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 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1326 deps = [ | 1326 deps = [ |
1327 ":base", | 1327 ":base", |
1328 ":i18n", | 1328 ":i18n", |
1329 ":message_loop_tests", | 1329 ":message_loop_tests", |
1330 ":prefs", | 1330 ":prefs", |
1331 ":prefs_test_support", | 1331 ":prefs_test_support", |
1332 "//base/allocator", | 1332 "//base/allocator", |
1333 "//base/test:run_all_unittests", | 1333 "//base/test:run_all_unittests", |
1334 "//base/test:test_support", | 1334 "//base/test:test_support", |
1335 "//base/third_party/dynamic_annotations", | 1335 "//base/third_party/dynamic_annotations", |
1336 "//base/third_party/nspr", | |
1337 "//testing/gmock", | 1336 "//testing/gmock", |
1338 "//testing/gtest", | 1337 "//testing/gtest", |
1339 "//third_party/icu", | 1338 "//third_party/icu", |
1340 ] | 1339 ] |
1341 | 1340 |
1342 if (is_ios) { | 1341 if (is_ios) { |
1343 sources -= [ | 1342 sources -= [ |
1344 "metrics/stats_table_uinittest.cc", # Requires spawning a process. | 1343 "metrics/stats_table_uinittest.cc", # Requires spawning a process. |
1345 "process/memory_unittest.cc", | 1344 "process/memory_unittest.cc", |
1346 "process/memory_unittest_mac.h", | 1345 "process/memory_unittest_mac.h", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1488 # GYP: //base.gyp:base_unittests_apk | 1487 # GYP: //base.gyp:base_unittests_apk |
1489 unittest_apk("base_unittests_apk") { | 1488 unittest_apk("base_unittests_apk") { |
1490 deps = [ | 1489 deps = [ |
1491 ":base_java", | 1490 ":base_java", |
1492 ":base_java_unittest_support", | 1491 ":base_java_unittest_support", |
1493 ":base_unittests", | 1492 ":base_unittests", |
1494 ] | 1493 ] |
1495 unittests_dep = ":base_unittests" | 1494 unittests_dep = ":base_unittests" |
1496 } | 1495 } |
1497 } | 1496 } |
OLD | NEW |