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

Side by Side Diff: base/BUILD.gn

Issue 1034053002: [Android] Add an out-of-app instrumentation driver APK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest_apk gn template Created 5 years, 8 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) 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698