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

Side by Side Diff: base/base.gyp

Issue 1278573002: [Android] Add gyp support for multidex. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 (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 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1433 'variables': { 1433 'variables': {
1434 'java_in_dir': '../base/android/java', 1434 'java_in_dir': '../base/android/java',
1435 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1435 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1436 }, 1436 },
1437 'dependencies': [ 1437 'dependencies': [
1438 'base_java_application_state', 1438 'base_java_application_state',
1439 'base_java_library_load_from_apk_status_codes', 1439 'base_java_library_load_from_apk_status_codes',
1440 'base_java_library_process_type', 1440 'base_java_library_process_type',
1441 'base_java_memory_pressure_level', 1441 'base_java_memory_pressure_level',
1442 'base_native_libraries_gen', 1442 'base_native_libraries_gen',
1443 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib',
1443 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1444 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1444 ], 1445 ],
1445 'includes': [ '../build/java.gypi' ], 1446 'includes': [ '../build/java.gypi' ],
1446 }, 1447 },
1447 { 1448 {
1448 # GN: //base:base_java_unittest_support 1449 # GN: //base:base_java_unittest_support
1449 'target_name': 'base_java_unittest_support', 1450 'target_name': 'base_java_unittest_support',
1450 'type': 'none', 1451 'type': 'none',
1451 'dependencies': [ 1452 'dependencies': [
1452 'base_java', 1453 'base_java',
(...skipping 30 matching lines...) Expand all
1483 }, 1484 },
1484 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1485 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1485 }, 1486 },
1486 { 1487 {
1487 # GN: //base:base_java_test_support 1488 # GN: //base:base_java_test_support
1488 'target_name': 'base_java_test_support', 1489 'target_name': 'base_java_test_support',
1489 'type': 'none', 1490 'type': 'none',
1490 'dependencies': [ 1491 'dependencies': [
1491 'base_java', 1492 'base_java',
1492 '../testing/android/on_device_instrumentation.gyp:reporter_java', 1493 '../testing/android/on_device_instrumentation.gyp:reporter_java',
1494 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib',
1493 ], 1495 ],
1494 'variables': { 1496 'variables': {
1495 'java_in_dir': '../base/test/android/javatests', 1497 'java_in_dir': '../base/test/android/javatests',
1496 }, 1498 },
1497 'includes': [ '../build/java.gypi' ], 1499 'includes': [ '../build/java.gypi' ],
1498 }, 1500 },
1499 { 1501 {
1500 # GN: //base:base_junit_tests 1502 # GN: //base:base_junit_tests
1501 'target_name': 'base_junit_tests', 1503 'target_name': 'base_junit_tests',
1502 'type': 'none', 1504 'type': 'none',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1622 '../build/isolate.gypi', 1624 '../build/isolate.gypi',
1623 ], 1625 ],
1624 'sources': [ 1626 'sources': [
1625 'base_unittests.isolate', 1627 'base_unittests.isolate',
1626 ], 1628 ],
1627 }, 1629 },
1628 ], 1630 ],
1629 }], 1631 }],
1630 ], 1632 ],
1631 } 1633 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698