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

Side by Side Diff: base/BUILD.gn

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 # strings 1321 # strings
1322 if (is_mac || is_ios || is_chromeos) { 1322 if (is_mac || is_ios || is_chromeos) {
1323 defines = [ "SYSTEM_NATIVE_UTF8" ] 1323 defines = [ "SYSTEM_NATIVE_UTF8" ]
1324 } 1324 }
1325 1325
1326 if (is_android) { 1326 if (is_android) {
1327 apk_deps = [ 1327 apk_deps = [
1328 ":base_java", 1328 ":base_java",
1329 ":base_java_unittest_support", 1329 ":base_java_unittest_support",
1330 ] 1330 ]
1331 isolate_file = "base_unittests.isolate"
1331 } 1332 }
1332 1333
1333 if (is_ios) { 1334 if (is_ios) {
1334 sources -= [ 1335 sources -= [
1335 "process/memory_unittest.cc", 1336 "process/memory_unittest.cc",
1336 "process/memory_unittest_mac.h", 1337 "process/memory_unittest_mac.h",
1337 "process/memory_unittest_mac.mm", 1338 "process/memory_unittest_mac.mm",
1338 "process/process_unittest.cc", 1339 "process/process_unittest.cc",
1339 "process/process_util_unittest.cc", 1340 "process/process_util_unittest.cc",
1340 ] 1341 ]
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 1504
1504 # GYP: //base.gyp:base_java_unittest_support 1505 # GYP: //base.gyp:base_java_unittest_support
1505 android_library("base_java_unittest_support") { 1506 android_library("base_java_unittest_support") {
1506 deps = [ 1507 deps = [
1507 ":base_java", 1508 ":base_java",
1508 ] 1509 ]
1509 java_files = 1510 java_files =
1510 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1511 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1511 } 1512 }
1512 } 1513 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698