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

Side by Side Diff: base/base.gyp

Issue 1465383003: [Android] Add ChromiumNetTestSupport.apk for the java EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yfriedman comments Created 5 years 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 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 'variables': { 1470 'variables': {
1471 'package_name': 'org/chromium/base/multidex', 1471 'package_name': 'org/chromium/base/multidex',
1472 'template_deps': [], 1472 'template_deps': [],
1473 'additional_gcc_preprocess_options': [ 1473 'additional_gcc_preprocess_options': [
1474 '--defines', 'MULTIDEX_CONFIGURATION_<(CONFIGURATION_NAME)', 1474 '--defines', 'MULTIDEX_CONFIGURATION_<(CONFIGURATION_NAME)',
1475 ], 1475 ],
1476 }, 1476 },
1477 'includes': ['../build/android/java_cpp_template.gypi'], 1477 'includes': ['../build/android/java_cpp_template.gypi'],
1478 }, 1478 },
1479 { 1479 {
1480 # GN: //base:base_native_test_libraries_gen
1481 'target_name': 'base_native_test_libraries_gen',
1482 'type': 'none',
1483 'sources': [
1484 'test/android/java/templates/NativeTestLibraries.template',
1485 ],
1486 'variables': {
1487 'package_name': 'org/chromium/base/test/library_loader',
1488 'template_deps': [],
1489 },
1490 'includes': [ '../build/android/java_cpp_template.gypi' ],
1491 },
1492 {
1480 # GN: //base:base_android_java_enums_srcjar 1493 # GN: //base:base_android_java_enums_srcjar
1481 'target_name': 'base_java_library_process_type', 1494 'target_name': 'base_java_library_process_type',
1482 'type': 'none', 1495 'type': 'none',
1483 'variables': { 1496 'variables': {
1484 'source_file': 'android/library_loader/library_loader_hooks.h', 1497 'source_file': 'android/library_loader/library_loader_hooks.h',
1485 }, 1498 },
1486 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1499 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1487 }, 1500 },
1488 { 1501 {
1489 # GN: //base:base_java 1502 # GN: //base:base_java
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1543 'source_file': 'memory/memory_pressure_listener.h', 1556 'source_file': 'memory/memory_pressure_listener.h',
1544 }, 1557 },
1545 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1558 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1546 }, 1559 },
1547 { 1560 {
1548 # GN: //base:base_java_test_support 1561 # GN: //base:base_java_test_support
1549 'target_name': 'base_java_test_support', 1562 'target_name': 'base_java_test_support',
1550 'type': 'none', 1563 'type': 'none',
1551 'dependencies': [ 1564 'dependencies': [
1552 'base_java', 1565 'base_java',
1566 'base_native_test_libraries_gen',
1553 '../testing/android/on_device_instrumentation.gyp:reporter_java', 1567 '../testing/android/on_device_instrumentation.gyp:reporter_java',
1554 ], 1568 ],
1555 'variables': { 1569 'variables': {
1570 'jar_excluded_classes': [ '*/NativeTestLibraries.class' ],
1556 'java_in_dir': '../base/test/android/javatests', 1571 'java_in_dir': '../base/test/android/javatests',
1557 }, 1572 },
1558 'includes': [ '../build/java.gypi' ], 1573 'includes': [ '../build/java.gypi' ],
1559 }, 1574 },
1560 { 1575 {
1561 # TODO(jbudorick): Remove this once we roll to robolectric 3.0 and pul l 1576 # TODO(jbudorick): Remove this once we roll to robolectric 3.0 and pul l
1562 # in the multidex shadow library. crbug.com/522043 1577 # in the multidex shadow library. crbug.com/522043
1563 # GN: //base:base_junit_test_support 1578 # GN: //base:base_junit_test_support
1564 'target_name': 'base_junit_test_support', 1579 'target_name': 'base_junit_test_support',
1565 'type': 'none', 1580 'type': 'none',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 '../build/isolate.gypi', 1731 '../build/isolate.gypi',
1717 ], 1732 ],
1718 'sources': [ 1733 'sources': [
1719 'base_unittests.isolate', 1734 'base_unittests.isolate',
1720 ], 1735 ],
1721 }, 1736 },
1722 ], 1737 ],
1723 }], 1738 }],
1724 ], 1739 ],
1725 } 1740 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698