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

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: rebase + robolectric shadow for MultiDex 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 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 'variables': { 1436 'variables': {
1437 'java_in_dir': '../base/android/java', 1437 'java_in_dir': '../base/android/java',
1438 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1438 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1439 }, 1439 },
1440 'dependencies': [ 1440 'dependencies': [
1441 'base_java_application_state', 1441 'base_java_application_state',
1442 'base_java_library_load_from_apk_status_codes', 1442 'base_java_library_load_from_apk_status_codes',
1443 'base_java_library_process_type', 1443 'base_java_library_process_type',
1444 'base_java_memory_pressure_level', 1444 'base_java_memory_pressure_level',
1445 'base_native_libraries_gen', 1445 'base_native_libraries_gen',
1446 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib',
1446 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1447 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1447 ], 1448 ],
1448 'includes': [ '../build/java.gypi' ], 1449 'includes': [ '../build/java.gypi' ],
1449 }, 1450 },
1450 { 1451 {
1451 # GN: //base:base_java_unittest_support 1452 # GN: //base:base_java_unittest_support
1452 'target_name': 'base_java_unittest_support', 1453 'target_name': 'base_java_unittest_support',
1453 'type': 'none', 1454 'type': 'none',
1454 'dependencies': [ 1455 'dependencies': [
1455 'base_java', 1456 'base_java',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 'dependencies': [ 1494 'dependencies': [
1494 'base_java', 1495 'base_java',
1495 '../testing/android/on_device_instrumentation.gyp:reporter_java', 1496 '../testing/android/on_device_instrumentation.gyp:reporter_java',
1496 ], 1497 ],
1497 'variables': { 1498 'variables': {
1498 'java_in_dir': '../base/test/android/javatests', 1499 'java_in_dir': '../base/test/android/javatests',
1499 }, 1500 },
1500 'includes': [ '../build/java.gypi' ], 1501 'includes': [ '../build/java.gypi' ],
1501 }, 1502 },
1502 { 1503 {
1504 # TODO(jbudorick): Remove this once we roll to robolectric 3.0 and pul l
1505 # in the multidex shadow library. crbug.com/522043
1506 # GN: //base:base_junit_test_support
1507 'target_name': 'base_junit_test_support',
1508 'type': 'none',
1509 'dependencies': [
1510 '../testing/android/junit/junit_test.gyp:junit_test_support',
1511 '../third_party/android_tools/android_tools.gyp:android_support_mult idex_javalib',
1512 ],
1513 'variables': {
1514 'src_paths': [
1515 '../base/test/android/junit/',
1516 ],
1517 },
1518 'includes': [ '../build/host_jar.gypi' ]
1519 },
1520 {
1503 # GN: //base:base_junit_tests 1521 # GN: //base:base_junit_tests
1504 'target_name': 'base_junit_tests', 1522 'target_name': 'base_junit_tests',
1505 'type': 'none', 1523 'type': 'none',
1506 'dependencies': [ 1524 'dependencies': [
1507 'base_java', 1525 'base_java',
1508 'base_java_test_support', 1526 'base_java_test_support',
1527 'base_junit_test_support',
1509 '../testing/android/junit/junit_test.gyp:junit_test_support', 1528 '../testing/android/junit/junit_test.gyp:junit_test_support',
1510 ], 1529 ],
1511 'variables': { 1530 'variables': {
1512 'main_class': 'org.chromium.testing.local.JunitTestMain', 1531 'main_class': 'org.chromium.testing.local.JunitTestMain',
1513 'src_paths': [ 1532 'src_paths': [
1514 '../base/android/junit/', 1533 '../base/android/junit/',
1515 ], 1534 ],
1516 }, 1535 },
1517 'includes': [ '../build/host_jar.gypi' ], 1536 'includes': [ '../build/host_jar.gypi' ],
1518 }, 1537 },
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 '../build/isolate.gypi', 1644 '../build/isolate.gypi',
1626 ], 1645 ],
1627 'sources': [ 1646 'sources': [
1628 'base_unittests.isolate', 1647 'base_unittests.isolate',
1629 ], 1648 ],
1630 }, 1649 },
1631 ], 1650 ],
1632 }], 1651 }],
1633 ], 1652 ],
1634 } 1653 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698