diff options
author | 2016-09-19 13:02:47 -0700 | |
---|---|---|
committer | 2016-09-19 15:04:12 -0700 | |
commit | b20be21233c63b44fab51a63ac724b9c13ef333d (patch) | |
tree | 46f27f60a1ea78195c5946f595fb69f741135ac6 /build/art.go | |
parent | d2c20805396fa6f424ed85546602bb84659fcca8 (diff) |
Always run oatdumps tests
ART_BUILD_HOST_STATIC is meaningless now, the static tools are always
available. Add oatdumpds as a dependency of the host oatdump tests, and
always enable the oatdump static tests.
Test: m -j test-art-host-gtest-oatdump_test
Change-Id: Id749f453f82489dc81a2c9042d3cc3120ea3d308
Diffstat (limited to 'build/art.go')
-rw-r--r-- | build/art.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/build/art.go b/build/art.go index 8266b087c5..ba5521a9ae 100644 --- a/build/art.go +++ b/build/art.go @@ -72,12 +72,6 @@ func globalFlags(ctx android.BaseContext) ([]string, []string) { cflags = append(cflags, "-fstack-protector") } - // Are additional statically-linked ART host binaries - // (dex2oats, oatdumps, etc.) getting built? - if envTrue(ctx, "ART_BUILD_HOST_STATIC") { - cflags = append(cflags, "-DART_BUILD_HOST_STATIC=1") - } - return cflags, asflags } |