| 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 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 deps = [ | 1320 deps = [ |
| 1321 ":base", | 1321 ":base", |
| 1322 ":i18n", | 1322 ":i18n", |
| 1323 ":message_loop_tests", | 1323 ":message_loop_tests", |
| 1324 ":prefs", | 1324 ":prefs", |
| 1325 ":prefs_test_support", | 1325 ":prefs_test_support", |
| 1326 "//base/allocator", | 1326 "//base/allocator", |
| 1327 "//base/test:run_all_unittests", | 1327 "//base/test:run_all_unittests", |
| 1328 "//base/test:test_support", | 1328 "//base/test:test_support", |
| 1329 "//base/third_party/dynamic_annotations", | 1329 "//base/third_party/dynamic_annotations", |
| 1330 "//base/third_party/nspr", | |
| 1331 "//testing/gmock", | 1330 "//testing/gmock", |
| 1332 "//testing/gtest", | 1331 "//testing/gtest", |
| 1333 "//third_party/icu", | 1332 "//third_party/icu", |
| 1334 ] | 1333 ] |
| 1335 | 1334 |
| 1336 if (is_ios) { | 1335 if (is_ios) { |
| 1337 sources -= [ | 1336 sources -= [ |
| 1338 "metrics/stats_table_uinittest.cc", # Requires spawning a process. | 1337 "metrics/stats_table_uinittest.cc", # Requires spawning a process. |
| 1339 "process/memory_unittest.cc", | 1338 "process/memory_unittest.cc", |
| 1340 "process/memory_unittest_mac.h", | 1339 "process/memory_unittest_mac.h", |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1493 # GYP: //base.gyp:base_unittests_apk | 1492 # GYP: //base.gyp:base_unittests_apk |
| 1494 unittest_apk("base_unittests_apk") { | 1493 unittest_apk("base_unittests_apk") { |
| 1495 deps = [ | 1494 deps = [ |
| 1496 ":base_java", | 1495 ":base_java", |
| 1497 ":base_java_unittest_support", | 1496 ":base_java_unittest_support", |
| 1498 ":base_unittests", | 1497 ":base_unittests", |
| 1499 ] | 1498 ] |
| 1500 unittests_dep = ":base_unittests" | 1499 unittests_dep = ":base_unittests" |
| 1501 } | 1500 } |
| 1502 } | 1501 } |
| OLD | NEW |