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 'includes': [ | 5 'includes': [ |
6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. | 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. |
7 '../../build/util/version.gypi' | 7 '../../build/util/version.gypi' |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 { | 193 { |
194 # GN: //chrome/android:chrome_public_apk | 194 # GN: //chrome/android:chrome_public_apk |
195 'target_name': 'chrome_public_apk', | 195 'target_name': 'chrome_public_apk', |
196 'type': 'none', | 196 'type': 'none', |
197 'variables': { | 197 'variables': { |
198 'android_manifest_path': '<(chrome_public_apk_manifest)', | 198 'android_manifest_path': '<(chrome_public_apk_manifest)', |
199 'apk_name': 'ChromePublic', | 199 'apk_name': 'ChromePublic', |
200 'native_lib_target': 'libchrome_public', | 200 'native_lib_target': 'libchrome_public', |
201 'java_in_dir': 'java', | 201 'java_in_dir': 'java', |
202 'resource_dir': '../../chrome/android/java/res_chromium', | 202 'resource_dir': '../../chrome/android/java/res_chromium', |
| 203 'enable_multidex': 1, |
| 204 'enable_multidex_configurations': ['Debug'], |
203 'conditions': [ | 205 'conditions': [ |
204 # Only attempt loading the library from the APK for 64 bit devices | 206 # Only attempt loading the library from the APK for 64 bit devices |
205 # until the number of 32 bit devices which don't support this | 207 # until the number of 32 bit devices which don't support this |
206 # approach falls to a minimal level - http://crbug.com/390618. | 208 # approach falls to a minimal level - http://crbug.com/390618. |
207 ['component != "shared_library" and profiling==0 and (target_arch == "
arm64" or target_arch == "x86_64")', { | 209 ['component != "shared_library" and profiling==0 and (target_arch == "
arm64" or target_arch == "x86_64")', { |
208 'load_library_from_zip_file': '<(chrome_apk_load_library_from_zip)', | 210 'load_library_from_zip_file': '<(chrome_apk_load_library_from_zip)', |
209 'load_library_from_zip': '<(chrome_apk_load_library_from_zip)', | 211 'load_library_from_zip': '<(chrome_apk_load_library_from_zip)', |
210 }], | 212 }], |
211 ], | 213 ], |
212 }, | 214 }, |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 } | 420 } |
419 ], | 421 ], |
420 ], | 422 ], |
421 } | 423 } |
422 | 424 |
423 # Local Variables: | 425 # Local Variables: |
424 # tab-width:2 | 426 # tab-width:2 |
425 # indent-tabs-mode:nil | 427 # indent-tabs-mode:nil |
426 # End: | 428 # End: |
427 # vim: set expandtab tabstop=2 shiftwidth=2: | 429 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |