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 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1452 ":base_java", | 1452 ":base_java", |
1453 ":base_java_test_support", | 1453 ":base_java_test_support", |
1454 ] | 1454 ] |
1455 DEPRECATED_java_in_dir = "android/javatests/src" | 1455 DEPRECATED_java_in_dir = "android/javatests/src" |
1456 } | 1456 } |
1457 | 1457 |
1458 # GYP: //base.gyp:base_java_test_support | 1458 # GYP: //base.gyp:base_java_test_support |
1459 android_library("base_java_test_support") { | 1459 android_library("base_java_test_support") { |
1460 deps = [ | 1460 deps = [ |
1461 ":base_java", | 1461 ":base_java", |
1462 "//testing/android/reporter:reporter_java", | |
1463 ] | 1462 ] |
1464 DEPRECATED_java_in_dir = "test/android/javatests/src" | 1463 DEPRECATED_java_in_dir = "test/android/javatests/src" |
1465 } | 1464 } |
1466 | 1465 |
1467 # GYP: //base.gyp:base_java_application_state | 1466 # GYP: //base.gyp:base_java_application_state |
1468 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes | 1467 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes |
1469 # GYP: //base.gyp:base_java_library_process_type | 1468 # GYP: //base.gyp:base_java_library_process_type |
1470 # GYP: //base.gyp:base_java_memory_pressure_level | 1469 # GYP: //base.gyp:base_java_memory_pressure_level |
1471 java_cpp_enum("base_android_java_enums_srcjar") { | 1470 java_cpp_enum("base_android_java_enums_srcjar") { |
1472 sources = [ | 1471 sources = [ |
(...skipping 20 matching lines...) Expand all Loading... |
1493 | 1492 |
1494 # GYP: //base.gyp:base_java_unittest_support | 1493 # GYP: //base.gyp:base_java_unittest_support |
1495 android_library("base_java_unittest_support") { | 1494 android_library("base_java_unittest_support") { |
1496 deps = [ | 1495 deps = [ |
1497 ":base_java", | 1496 ":base_java", |
1498 ] | 1497 ] |
1499 java_files = | 1498 java_files = |
1500 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1499 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1501 } | 1500 } |
1502 } | 1501 } |
OLD | NEW |