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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 "prefs/value_map_pref_store.h", | 1007 "prefs/value_map_pref_store.h", |
1008 "prefs/writeable_pref_store.h", | 1008 "prefs/writeable_pref_store.h", |
1009 ] | 1009 ] |
1010 | 1010 |
1011 defines = [ "BASE_PREFS_IMPLEMENTATION" ] | 1011 defines = [ "BASE_PREFS_IMPLEMENTATION" ] |
1012 | 1012 |
1013 deps = [ ":base" ] | 1013 deps = [ ":base" ] |
1014 } | 1014 } |
1015 | 1015 |
1016 source_set("prefs_test_support") { | 1016 source_set("prefs_test_support") { |
| 1017 testonly = true |
1017 sources = [ | 1018 sources = [ |
1018 "prefs/mock_pref_change_callback.cc", | 1019 "prefs/mock_pref_change_callback.cc", |
1019 "prefs/mock_pref_change_callback.h", | 1020 "prefs/mock_pref_change_callback.h", |
1020 "prefs/pref_store_observer_mock.cc", | 1021 "prefs/pref_store_observer_mock.cc", |
1021 "prefs/pref_store_observer_mock.h", | 1022 "prefs/pref_store_observer_mock.h", |
1022 "prefs/testing_pref_service.cc", | 1023 "prefs/testing_pref_service.cc", |
1023 "prefs/testing_pref_service.h", | 1024 "prefs/testing_pref_service.h", |
1024 "prefs/testing_pref_store.cc", | 1025 "prefs/testing_pref_store.cc", |
1025 "prefs/testing_pref_store.h", | 1026 "prefs/testing_pref_store.h", |
1026 ] | 1027 ] |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1456 | 1457 |
1457 unittest_apk("base_unittests_apk") { | 1458 unittest_apk("base_unittests_apk") { |
1458 deps = [ | 1459 deps = [ |
1459 ":base_java", | 1460 ":base_java", |
1460 ":base_java_unittest_support", | 1461 ":base_java_unittest_support", |
1461 ":base_unittests", | 1462 ":base_unittests", |
1462 ] | 1463 ] |
1463 unittests_dep = ":base_unittests" | 1464 unittests_dep = ":base_unittests" |
1464 } | 1465 } |
1465 } | 1466 } |
OLD | NEW |