• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/bt


Commit MetaInfo

Revision2ecf4ac3d8c631906eacca9562b5f777878fdc80 (tree)
Zeit2017-04-25 14:23:58
AutorPavlin Radoslavov <pavlin@goog...>
CommiterPavlin Radoslavov

Log Message

Add missing library dependency when compiling the unit tests

This fixes a compilation issue when compiling with ASAN enabled.

Bug: 37624756
Test: make -j 40 SANITIZE_TARGET='address coverage' tests
Change-Id: I9caa3d404e60ee105435539744ed2b8ccf353700
(cherry picked from commit 044921b223868595a6f96709020b46349b05fa45)

Ändern Zusammenfassung

Diff

--- a/audio_a2dp_hw/Android.bp
+++ b/audio_a2dp_hw/Android.bp
@@ -44,5 +44,8 @@ cc_test {
4444 shared_libs: [
4545 "liblog",
4646 ],
47- static_libs: ["audio.a2dp.default"],
47+ static_libs: [
48+ "audio.a2dp.default",
49+ "libosi",
50+ ],
4851 }