diff options
author | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:38:16 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:44:29 -0700 |
commit | 48529337077a2fad36a7cba0a26083694bff3537 (patch) | |
tree | 7ee83a477c711abf16ce00de72adfa2270277290 /base | |
parent | cd58088ccfc1a3315bed181c0c1b7cab3e71176f (diff) | |
download | core-48529337077a2fad36a7cba0a26083694bff3537.tar.gz core-48529337077a2fad36a7cba0a26083694bff3537.tar.bz2 core-48529337077a2fad36a7cba0a26083694bff3537.zip |
Rename target.linux[_x86[_64]] to target.linux_glibc[_x86[_64]]
In the future, target.linux will apply to all targets running a linux kernel
(android, linux_glibc, linux_bionic). So move all current users to the specific
linux_glibc.
There will be another cleanup pass later that will move some instances back to
target.linux if the properties should be shared with target.android and
target.linux_bionic, but target.linux needs to be removed first.
Test: out/soong/build.ninja identical before/after
Change-Id: I72ef34689c60ce547cab2898e354b027e335f6a1
Exempt-From-Owner-Approval: build system cleanup
Diffstat (limited to 'base')
-rw-r--r-- | base/Android.bp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/Android.bp b/base/Android.bp index da262d20d..0fd00ea5d 100644 --- a/base/Android.bp +++ b/base/Android.bp @@ -89,7 +89,7 @@ cc_library { cppflags: ["-Wexit-time-destructors"], enabled: true, }, - linux: { + linux_glibc: { srcs: [ "chrono_utils.cpp", "errors_unix.cpp", @@ -135,7 +135,7 @@ cc_test { misc_undefined: ["integer"], }, }, - linux: { + linux_glibc: { srcs: ["chrono_utils_test.cpp"], }, windows: { |