OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 ":base_java", | 1440 ":base_java", |
1441 ":base_java_test_support", | 1441 ":base_java_test_support", |
1442 ] | 1442 ] |
1443 DEPRECATED_java_in_dir = "android/javatests/src" | 1443 DEPRECATED_java_in_dir = "android/javatests/src" |
1444 } | 1444 } |
1445 | 1445 |
1446 # GYP: //base.gyp:base_java_test_support | 1446 # GYP: //base.gyp:base_java_test_support |
1447 android_library("base_java_test_support") { | 1447 android_library("base_java_test_support") { |
1448 deps = [ | 1448 deps = [ |
1449 ":base_java", | 1449 ":base_java", |
| 1450 "//testing/android/reporter:reporter_java", |
1450 ] | 1451 ] |
1451 DEPRECATED_java_in_dir = "test/android/javatests/src" | 1452 DEPRECATED_java_in_dir = "test/android/javatests/src" |
1452 } | 1453 } |
1453 | 1454 |
1454 # GYP: //base.gyp:base_java_application_state | 1455 # GYP: //base.gyp:base_java_application_state |
1455 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes | 1456 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes |
1456 # GYP: //base.gyp:base_java_library_process_type | 1457 # GYP: //base.gyp:base_java_library_process_type |
1457 # GYP: //base.gyp:base_java_memory_pressure_level | 1458 # GYP: //base.gyp:base_java_memory_pressure_level |
1458 java_cpp_enum("base_android_java_enums_srcjar") { | 1459 java_cpp_enum("base_android_java_enums_srcjar") { |
1459 sources = [ | 1460 sources = [ |
(...skipping 20 matching lines...) Expand all Loading... |
1480 | 1481 |
1481 # GYP: //base.gyp:base_java_unittest_support | 1482 # GYP: //base.gyp:base_java_unittest_support |
1482 android_library("base_java_unittest_support") { | 1483 android_library("base_java_unittest_support") { |
1483 deps = [ | 1484 deps = [ |
1484 ":base_java", | 1485 ":base_java", |
1485 ] | 1486 ] |
1486 java_files = | 1487 java_files = |
1487 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1488 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1488 } | 1489 } |
1489 } | 1490 } |
OLD | NEW |