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

Side by Side Diff: base/base.gyp

Issue 1218053003: [Android] Begin switching from lighttpd + apache to EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 'sources': [ 1417 'sources': [
1418 'android/java/templates/NativeLibraries.template', 1418 'android/java/templates/NativeLibraries.template',
1419 ], 1419 ],
1420 'variables': { 1420 'variables': {
1421 'package_name': 'org/chromium/base/library_loader', 1421 'package_name': 'org/chromium/base/library_loader',
1422 'template_deps': [], 1422 'template_deps': [],
1423 }, 1423 },
1424 'includes': [ '../build/android/java_cpp_template.gypi' ], 1424 'includes': [ '../build/android/java_cpp_template.gypi' ],
1425 }, 1425 },
1426 { 1426 {
1427 # GN: //base:base_native_test_libraries_gen
1428 'target_name': 'base_native_test_libraries_gen',
1429 'type': 'none',
1430 'sources': [
1431 'android/java/templates/NativeTestLibraries.template',
1432 ],
1433 'variables': {
1434 'package_name': 'org/chromium/base/library_loader',
1435 'template_deps': [],
1436 },
1437 'includes': [ '../build/android/java_cpp_template.gypi' ],
1438 },
1439 {
1427 # GN: //base:base_android_java_enums_srcjar 1440 # GN: //base:base_android_java_enums_srcjar
1428 'target_name': 'base_java_library_process_type', 1441 'target_name': 'base_java_library_process_type',
1429 'type': 'none', 1442 'type': 'none',
1430 'variables': { 1443 'variables': {
1431 'source_file': 'android/library_loader/library_loader_hooks.h', 1444 'source_file': 'android/library_loader/library_loader_hooks.h',
1432 }, 1445 },
1433 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1446 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1434 }, 1447 },
1435 { 1448 {
1436 # GN: //base:base_java 1449 # GN: //base:base_java
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1488 'source_file': 'memory/memory_pressure_listener.h', 1501 'source_file': 'memory/memory_pressure_listener.h',
1489 }, 1502 },
1490 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1503 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1491 }, 1504 },
1492 { 1505 {
1493 # GN: //base:base_java_test_support 1506 # GN: //base:base_java_test_support
1494 'target_name': 'base_java_test_support', 1507 'target_name': 'base_java_test_support',
1495 'type': 'none', 1508 'type': 'none',
1496 'dependencies': [ 1509 'dependencies': [
1497 'base_java', 1510 'base_java',
1511 'base_native_test_libraries_gen',
1498 '../testing/android/on_device_instrumentation.gyp:reporter_java', 1512 '../testing/android/on_device_instrumentation.gyp:reporter_java',
1499 ], 1513 ],
1500 'variables': { 1514 'variables': {
1515 'jar_excluded_classes': [ '*/NativeTestLibraries.class' ],
1501 'java_in_dir': '../base/test/android/javatests', 1516 'java_in_dir': '../base/test/android/javatests',
1502 }, 1517 },
1503 'includes': [ '../build/java.gypi' ], 1518 'includes': [ '../build/java.gypi' ],
1504 }, 1519 },
1505 { 1520 {
1506 # GN: //base:base_junit_tests 1521 # GN: //base:base_junit_tests
1507 'target_name': 'base_junit_tests', 1522 'target_name': 'base_junit_tests',
1508 'type': 'none', 1523 'type': 'none',
1509 'dependencies': [ 1524 'dependencies': [
1510 'base_java', 1525 'base_java',
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 '../build/isolate.gypi', 1643 '../build/isolate.gypi',
1629 ], 1644 ],
1630 'sources': [ 1645 'sources': [
1631 'base_unittests.isolate', 1646 'base_unittests.isolate',
1632 ], 1647 ],
1633 }, 1648 },
1634 ], 1649 ],
1635 }], 1650 }],
1636 ], 1651 ],
1637 } 1652 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698