diff options
author | 2021-07-12 15:52:18 -0700 | |
---|---|---|
committer | 2021-07-13 16:37:31 +0000 | |
commit | 0910d891d729ca984baa31d4e3ed51da8b0cad7d (patch) | |
tree | 4abfda8e0f1757272ec5c87dfbda9488f4f0cda1 | |
parent | 47349d2d27b9ee57896e03841032a3057fc9d838 (diff) |
Remove libc_headers from cc_object
cc_object modules get default libraries like libc now and no longer
need to explicitly include libc_headers.
Bug: 153662223
Test: m asm_defines.s
Change-Id: Ide10877f7511f10bdfce1b55a9f631f2a44be5c3
-rw-r--r-- | tools/cpp-define-generator/Android.bp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/cpp-define-generator/Android.bp b/tools/cpp-define-generator/Android.bp index a436430c16..3c6acb9705 100644 --- a/tools/cpp-define-generator/Android.bp +++ b/tools/cpp-define-generator/Android.bp @@ -38,14 +38,6 @@ cc_object { "libart_runtime_headers_ndk", "libdexfile_all_headers", // For dex/modifiers.h ], - target: { - android: { - header_libs: ["libc_headers"], // TODO(b/153662223): Clean this up. - }, - linux_bionic: { - header_libs: ["libc_headers"], // TODO(b/153662223): Clean this up. - }, - }, // Produce text file rather than binary. cflags: ["-S"], srcs: ["asm_defines.cc"], |