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

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: update w/ review feedback, gn fixes 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
« no previous file with comments | « no previous file | tools/mb/mb.py » ('j') | tools/mb/mb.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 data = [
1320 "test/data/",
1321
1322 # TODO(dpranke): Remove when icu declares this directly.
1323 "$root_out_dir/icudtl.dat",
Dirk Pranke 2015/06/03 23:20:27 patch for this posted to https://codereview.chromi
1324 ]
1325
1319 # Allow more direct string conversions on platforms with native utf8 1326 # Allow more direct string conversions on platforms with native utf8
1320 # strings 1327 # strings
1321 if (is_mac || is_ios || is_chromeos) { 1328 if (is_mac || is_ios || is_chromeos) {
1322 defines = [ "SYSTEM_NATIVE_UTF8" ] 1329 defines = [ "SYSTEM_NATIVE_UTF8" ]
1323 } 1330 }
1324 1331
1325 if (is_android) { 1332 if (is_android) {
1326 apk_deps = [ 1333 apk_deps = [
1327 ":base_java", 1334 ":base_java",
1328 ":base_java_unittest_support", 1335 ":base_java_unittest_support",
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 1511
1505 # GYP: //base.gyp:base_java_unittest_support 1512 # GYP: //base.gyp:base_java_unittest_support
1506 android_library("base_java_unittest_support") { 1513 android_library("base_java_unittest_support") {
1507 deps = [ 1514 deps = [
1508 ":base_java", 1515 ":base_java",
1509 ] 1516 ]
1510 java_files = 1517 java_files =
1511 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1518 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1512 } 1519 }
1513 } 1520 }
OLDNEW
« no previous file with comments | « no previous file | tools/mb/mb.py » ('j') | tools/mb/mb.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698