| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This file contains common system config stuff for the Android build. | 5 # This file contains common system config stuff for the Android build. |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build_overrides/build.gni") | 8 import("//build_overrides/build.gni") |
| 9 | 9 |
| 10 has_chrome_android_internal = | 10 has_chrome_android_internal = |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 enable_incremental_javac = false | 162 enable_incremental_javac = false |
| 163 | 163 |
| 164 # Adds intrumentation to each function. Writes a file with the order that | 164 # Adds intrumentation to each function. Writes a file with the order that |
| 165 # functions are called at startup. | 165 # functions are called at startup. |
| 166 use_order_profiling = false | 166 use_order_profiling = false |
| 167 | 167 |
| 168 # Builds secondary abi for APKs, supports build 32-bit arch as secondary | 168 # Builds secondary abi for APKs, supports build 32-bit arch as secondary |
| 169 # abi in 64-bit Monochrome and WebView. | 169 # abi in 64-bit Monochrome and WebView. |
| 170 build_apk_secondary_abi = true | 170 build_apk_secondary_abi = true |
| 171 | 171 |
| 172 # Enables java8 language features (via retrolambda). | 172 # Enables java8 language features (via Desugar). |
| 173 # work-in-progress (http://crbug.com/642600) | 173 # work-in-progress (http://crbug.com/730711) |
| 174 use_java8 = false | 174 use_java8 = false |
| 175 | 175 |
| 176 # Build incremental targets whenever possible. | 176 # Build incremental targets whenever possible. |
| 177 # Ex. with this arg set to true, the chrome_public_apk target result in | 177 # Ex. with this arg set to true, the chrome_public_apk target result in |
| 178 # chrome_public_apk_incremental being built. | 178 # chrome_public_apk_incremental being built. |
| 179 incremental_apk_by_default = false | 179 incremental_apk_by_default = false |
| 180 | 180 |
| 181 # Allow concurrent proguarding and final dexing. | 181 # Allow concurrent proguarding and final dexing. |
| 182 # TODO(jbudorick): Remove this once pools are supported for actions. | 182 # TODO(jbudorick): Remove this once pools are supported for actions. |
| 183 enable_concurrent_apk_finalization = false | 183 enable_concurrent_apk_finalization = false |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 "//build/toolchain/android:android_${android_secondary_abi_cpu}" | 378 "//build/toolchain/android:android_${android_secondary_abi_cpu}" |
| 379 } | 379 } |
| 380 } | 380 } |
| 381 } | 381 } |
| 382 | 382 |
| 383 declare_args() { | 383 declare_args() { |
| 384 # Enables used resource whitelist generation. Set for official builds only | 384 # Enables used resource whitelist generation. Set for official builds only |
| 385 # as a large amount of build output is generated. | 385 # as a large amount of build output is generated. |
| 386 enable_resource_whitelist_generation = is_android && is_official_build | 386 enable_resource_whitelist_generation = is_android && is_official_build |
| 387 } | 387 } |
| OLD | NEW |