diff options
author | Anwar Ghuloum <anwarg@google.com> | 2013-04-30 17:27:40 -0700 |
---|---|---|
committer | Anwar Ghuloum <anwarg@google.com> | 2013-04-30 20:32:59 -0700 |
commit | 8447d84d847d4562d7a7bce62768c27e7d20a9aa (patch) | |
tree | 46aad5bf1bc3d3ce28b24ef1fcc5463224083991 /build/Android.common.mk | |
parent | 88fc036842eb3c48acd5d3b01e75b3012c996d90 (diff) | |
download | art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.zip art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.tar.gz art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.tar.bz2 |
Compile filter for small applications and methods
Adds a filter per method and program size (in method count). Right now, options are treated
as runtime options...but we might want to change this and separate options for compilers and
runtime.
Change-Id: I8c3e925116119af8ffa95ff09f77bcfdd173767b
Diffstat (limited to 'build/Android.common.mk')
-rw-r--r-- | build/Android.common.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/Android.common.mk b/build/Android.common.mk index c8212ef..2453fa9 100644 --- a/build/Android.common.mk +++ b/build/Android.common.mk @@ -14,10 +14,10 @@ # limitations under the License. # -ART_LIGHT_MODE := false -ifneq ($(wildcard art/LIGHT_ART),) -$(info Enabling ART_LIGHT_MODE because of existence of art/LIGHT_ART) -ART_LIGHT_MODE := true +ART_SMALL_MODE := false +ifneq ($(wildcard art/SMALL_ART),) +$(info Enabling ART_SMALL_MODE because of existence of art/SMALL_ART) +ART_SMALL_MODE := true endif ART_USE_PORTABLE_COMPILER := false |