Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: chrome/android/chrome_apk.gypi

Issue 1156873002: Load v8 snapshots directly from APK (and store them uncompressed) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8initializer
Patch Set: fix webview, content shell, chromecast Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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',
46 }, 48 },
47 'includes': [ '../../build/java_apk.gypi' ], 49 'includes': [ '../../build/java_apk.gypi' ],
48 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698