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

Side by Side Diff: base/base.gyp

Issue 1408163009: [Android] Enable multidex for debug builds of ChromePublic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build Created 5 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 'sources': [ 1453 'sources': [
1454 'android/java/templates/NativeLibraries.template', 1454 'android/java/templates/NativeLibraries.template',
1455 ], 1455 ],
1456 'variables': { 1456 'variables': {
1457 'package_name': 'org/chromium/base/library_loader', 1457 'package_name': 'org/chromium/base/library_loader',
1458 'template_deps': [], 1458 'template_deps': [],
1459 }, 1459 },
1460 'includes': [ '../build/android/java_cpp_template.gypi' ], 1460 'includes': [ '../build/android/java_cpp_template.gypi' ],
1461 }, 1461 },
1462 { 1462 {
1463 # GN: //base:base_multidex_gen
1464 'target_name': 'base_multidex_gen',
1465 'type': 'none',
1466 'sources': [
1467 'android/java/templates/ChromiumMultiDex.template',
1468 ],
1469 'variables': {
1470 'package_name': 'org/chromium/base/multidex',
1471 'template_deps': [],
1472 'additional_gcc_preprocess_options': [
1473 '--defines', 'CONFIGURATION_NAME_<(CONFIGURATION_NAME)',
1474 ],
1475 },
1476 'includes': ['../build/android/java_cpp_template.gypi'],
1477 },
1478 {
1463 # GN: //base:base_android_java_enums_srcjar 1479 # GN: //base:base_android_java_enums_srcjar
1464 'target_name': 'base_java_library_process_type', 1480 'target_name': 'base_java_library_process_type',
1465 'type': 'none', 1481 'type': 'none',
1466 'variables': { 1482 'variables': {
1467 'source_file': 'android/library_loader/library_loader_hooks.h', 1483 'source_file': 'android/library_loader/library_loader_hooks.h',
1468 }, 1484 },
1469 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1485 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1470 }, 1486 },
1471 { 1487 {
1472 # GN: //base:base_java 1488 # GN: //base:base_java
1473 'target_name': 'base_java', 1489 'target_name': 'base_java',
1474 'type': 'none', 1490 'type': 'none',
1475 'variables': { 1491 'variables': {
1476 'java_in_dir': 'android/java', 1492 'java_in_dir': 'android/java',
1477 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1493 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1478 }, 1494 },
1479 'dependencies': [ 1495 'dependencies': [
1480 'base_java_application_state', 1496 'base_java_application_state',
1481 'base_java_library_load_from_apk_status_codes', 1497 'base_java_library_load_from_apk_status_codes',
1482 'base_java_library_process_type', 1498 'base_java_library_process_type',
1483 'base_java_memory_pressure_level', 1499 'base_java_memory_pressure_level',
1500 'base_multidex_gen',
1484 'base_native_libraries_gen', 1501 'base_native_libraries_gen',
1485 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib', 1502 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib',
1486 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1503 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1487 ], 1504 ],
1488 'includes': [ '../build/java.gypi' ], 1505 'includes': [ '../build/java.gypi' ],
1489 }, 1506 },
1490 { 1507 {
1491 # GN: //base:base_java_unittest_support 1508 # GN: //base:base_java_unittest_support
1492 'target_name': 'base_java_unittest_support', 1509 'target_name': 'base_java_unittest_support',
1493 'type': 'none', 1510 'type': 'none',
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
1698 '../build/isolate.gypi', 1715 '../build/isolate.gypi',
1699 ], 1716 ],
1700 'sources': [ 1717 'sources': [
1701 'base_unittests.isolate', 1718 'base_unittests.isolate',
1702 ], 1719 ],
1703 }, 1720 },
1704 ], 1721 ],
1705 }], 1722 }],
1706 ], 1723 ],
1707 } 1724 }
OLDNEW
« no previous file with comments | « base/android/java/templates/ChromiumMultiDex.template ('k') | build/android/gyp/apk_obfuscate.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698