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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 Loading... | |
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 } |
OLD | NEW |