aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-01-11 00:15:36 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-01-11 00:15:36 +0000
commita96faa2d4e4b2412b4f64a1bb22ccf2a2c340fec (patch)
tree17c1fe0d193eb6bc6a51bc4e3620b4acd91cb392
parent56aacc2105aea00eb914ba724d29a6c2db28fa93 (diff)
parentf3d8171c38d48460c2cace13531d02fef11a0241 (diff)
downloadcpython3-a96faa2d4e4b2412b4f64a1bb22ccf2a2c340fec.tar.gz
Add liblog as a dependency where libbase is used. am: ff869db7be am: f3d8171c38
Change-Id: Ie4765c9cf342d37006db3f9c7f54660ba69eb7fc
-rw-r--r--Android.bp15
1 files changed, 11 insertions, 4 deletions
diff --git a/Android.bp b/Android.bp
index a43b89d841..7449c17d59 100644
--- a/Android.bp
+++ b/Android.bp
@@ -12,7 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-build = ["Android-bionic.bp", "Android-linux_x86_64.bp", "Android-darwin_x86_64.bp"]
+build = [
+ "Android-bionic.bp",
+ "Android-linux_x86_64.bp",
+ "Android-darwin_x86_64.bp",
+]
cc_defaults {
name: "py3-interp-defaults",
@@ -266,7 +270,10 @@ cc_defaults {
],
},
host: {
- static_libs: ["libsqlite"],
+ static_libs: [
+ "libsqlite",
+ "liblog",
+ ],
},
android: {
shared_libs: [
@@ -310,7 +317,7 @@ cc_library_static {
darwin: {
srcs: ["android/darwin_x86_64/config.c"],
},
- }
+ },
}
cc_binary {
@@ -364,5 +371,5 @@ cc_library_static {
darwin: {
srcs: [":py3-c-modules-darwin_x86_64"],
},
- }
+ },
}