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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1014 "prefs/testing_pref_service.cc", | 1014 "prefs/testing_pref_service.cc", |
1015 "prefs/testing_pref_service.h", | 1015 "prefs/testing_pref_service.h", |
1016 "prefs/testing_pref_store.cc", | 1016 "prefs/testing_pref_store.cc", |
1017 "prefs/testing_pref_store.h", | 1017 "prefs/testing_pref_store.h", |
1018 ] | 1018 ] |
1019 | 1019 |
1020 deps = [ | 1020 deps = [ |
1021 ":base", | 1021 ":base", |
1022 ":prefs", | 1022 ":prefs", |
1023 "//testing/gmock", | 1023 "//testing/gmock", |
| 1024 "//testing/gtest", |
1024 ] | 1025 ] |
1025 } | 1026 } |
1026 | 1027 |
1027 source_set("message_loop_tests") { | 1028 source_set("message_loop_tests") { |
1028 sources = [ | 1029 sources = [ |
1029 "message_loop/message_loop_test.cc", | 1030 "message_loop/message_loop_test.cc", |
1030 "message_loop/message_loop_test.h", | 1031 "message_loop/message_loop_test.h", |
1031 ] | 1032 ] |
1032 | 1033 |
1033 deps = [ | 1034 deps = [ |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1449 | 1450 |
1450 unittest_apk("base_unittests_apk") { | 1451 unittest_apk("base_unittests_apk") { |
1451 deps = [ | 1452 deps = [ |
1452 ":base_java", | 1453 ":base_java", |
1453 ":base_java_unittest_support", | 1454 ":base_java_unittest_support", |
1454 ":base_unittests", | 1455 ":base_unittests", |
1455 ] | 1456 ] |
1456 unittests_dep = ":base_unittests" | 1457 unittests_dep = ":base_unittests" |
1457 } | 1458 } |
1458 } | 1459 } |
OLD | NEW |