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

Side by Side Diff: base/BUILD.gn

Issue 1168513006: Make swarming work w/ GN (kinda) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 "//base/allocator", 1309 "//base/allocator",
1310 "//base/test:run_all_unittests", 1310 "//base/test:run_all_unittests",
1311 "//base/test:test_support", 1311 "//base/test:test_support",
1312 "//base/third_party/dynamic_annotations", 1312 "//base/third_party/dynamic_annotations",
1313 "//base/trace_event:trace_event_unittests", 1313 "//base/trace_event:trace_event_unittests",
1314 "//testing/gmock", 1314 "//testing/gmock",
1315 "//testing/gtest", 1315 "//testing/gtest",
1316 "//third_party/icu", 1316 "//third_party/icu",
1317 ] 1317 ]
1318 1318
1319 # TODO(dpranke): Replace this with a better form of globbing or
1320 # some other way to indicate that we depend on the contents of a directory.
1321 data = exec_script("//build/android/gyp/find.py",
1322 [ rebase_path("test/data") ],
1323 "list lines")
Dirk Pranke 2015/06/03 02:24:54 This is a hack; it is the equivalent of specifying
M-A Ruel 2015/06/03 15:47:18 isolate really needs to be passed a directory, bec
Dirk Pranke 2015/06/03 17:15:49 Yeah, it occurred to me that it would be fragile e
1324
1319 # Allow more direct string conversions on platforms with native utf8 1325 # Allow more direct string conversions on platforms with native utf8
1320 # strings 1326 # strings
1321 if (is_mac || is_ios || is_chromeos) { 1327 if (is_mac || is_ios || is_chromeos) {
1322 defines = [ "SYSTEM_NATIVE_UTF8" ] 1328 defines = [ "SYSTEM_NATIVE_UTF8" ]
1323 } 1329 }
1324 1330
1325 if (is_android) { 1331 if (is_android) {
1326 apk_deps = [ 1332 apk_deps = [
1327 ":base_java", 1333 ":base_java",
1328 ":base_java_unittest_support", 1334 ":base_java_unittest_support",
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 1509
1504 # GYP: //base.gyp:base_java_unittest_support 1510 # GYP: //base.gyp:base_java_unittest_support
1505 android_library("base_java_unittest_support") { 1511 android_library("base_java_unittest_support") {
1506 deps = [ 1512 deps = [
1507 ":base_java", 1513 ":base_java",
1508 ] 1514 ]
1509 java_files = 1515 java_files =
1510 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1516 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1511 } 1517 }
1512 } 1518 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698