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

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

Powered by Google App Engine
This is Rietveld 408576698