Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'variables': { | 5 'variables': { |
| 6 'variables': { | 6 'variables': { |
| 7 'native_lib_placeholders_file%': '', | 7 'native_lib_placeholders_file%': '', |
| 8 'chrome_apk_use_relocation_packer%': 1, | 8 'chrome_apk_use_relocation_packer%': 1, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 # Use the chromium linker unless cygprofile instrumentation is active. | 10 # Use the chromium linker unless cygprofile instrumentation is active. |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 36 # Only attempt relocation packing for 32-bit and 64-bit arm builds | 36 # Only attempt relocation packing for 32-bit and 64-bit arm builds |
| 37 # that enable the chromium linker. Packing is a no-op if this | 37 # that enable the chromium linker. Packing is a no-op if this |
| 38 # is not a Release build. | 38 # is not a Release build. |
| 39 ['chrome_apk_use_chromium_linker == 1 and (target_arch == "arm" or tar get_arch == "arm64")', { | 39 ['chrome_apk_use_chromium_linker == 1 and (target_arch == "arm" or tar get_arch == "arm64")', { |
| 40 'use_relocation_packer': '<(chrome_apk_use_relocation_packer)', | 40 'use_relocation_packer': '<(chrome_apk_use_relocation_packer)', |
| 41 }], | 41 }], |
| 42 ], | 42 ], |
| 43 }], | 43 }], |
| 44 ], | 44 ], |
| 45 'run_findbugs': 0, | 45 'run_findbugs': 0, |
| 46 # Allow v8 snapshots to be loaded directly from the .apk. | |
| 47 'extensions_to_not_compress': 'bin', | |
|
Yaron
2015/05/25 18:56:44
Is there any gn support for this?
| |
| 46 }, | 48 }, |
| 47 'includes': [ '../../build/java_apk.gypi' ], | 49 'includes': [ '../../build/java_apk.gypi' ], |
| 48 } | 50 } |
| OLD | NEW |