| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 component("prefs") { | 5 component("prefs") { |
| 6 sources = [ | 6 sources = [ |
| 7 "default_pref_store.cc", | 7 "default_pref_store.cc", |
| 8 "default_pref_store.h", | 8 "default_pref_store.h", |
| 9 "in_memory_pref_store.cc", | 9 "in_memory_pref_store.cc", |
| 10 "in_memory_pref_store.h", | 10 "in_memory_pref_store.h", |
| 11 "json_pref_store.cc", | 11 "json_pref_store.cc", |
| 12 "json_pref_store.h", | 12 "json_pref_store.h", |
| 13 "overlay_user_pref_store.cc", | 13 "overlay_user_pref_store.cc", |
| 14 "overlay_user_pref_store.h", | 14 "overlay_user_pref_store.h", |
| 15 "pref_change_registrar.cc", | 15 "pref_change_registrar.cc", |
| 16 "pref_change_registrar.h", | 16 "pref_change_registrar.h", |
| 17 "pref_member.cc", | 17 "pref_member.cc", |
| 18 "pref_member.h", | 18 "pref_member.h", |
| 19 "pref_notifier_impl.cc", | 19 "pref_notifier_impl.cc", |
| 20 "pref_notifier_impl.h", | 20 "pref_notifier_impl.h", |
| 21 "pref_observer_store.cc", |
| 22 "pref_observer_store.h", |
| 21 "pref_registry.cc", | 23 "pref_registry.cc", |
| 22 "pref_registry.h", | 24 "pref_registry.h", |
| 23 "pref_registry_simple.cc", | 25 "pref_registry_simple.cc", |
| 24 "pref_registry_simple.h", | 26 "pref_registry_simple.h", |
| 25 "pref_service.cc", | 27 "pref_service.cc", |
| 26 "pref_service.h", | 28 "pref_service.h", |
| 27 "pref_service_factory.cc", | 29 "pref_service_factory.cc", |
| 28 "pref_service_factory.h", | 30 "pref_service_factory.h", |
| 29 "pref_store.cc", | 31 "pref_store.cc", |
| 30 "pref_store.h", | 32 "pref_store.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 45 "pref_notifier.h", | 47 "pref_notifier.h", |
| 46 "pref_observer.h", | 48 "pref_observer.h", |
| 47 "writeable_pref_store.h", | 49 "writeable_pref_store.h", |
| 48 ] | 50 ] |
| 49 } | 51 } |
| 50 | 52 |
| 51 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ] | 53 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ] |
| 52 | 54 |
| 53 deps = [ | 55 deps = [ |
| 54 "//base", | 56 "//base", |
| 57 "//components/prefs/public/interfaces", |
| 58 "//services/shell/public/cpp", |
| 55 ] | 59 ] |
| 56 } | 60 } |
| 57 | 61 |
| 58 source_set("test_support") { | 62 source_set("test_support") { |
| 59 testonly = true | 63 testonly = true |
| 60 sources = [ | 64 sources = [ |
| 61 "mock_pref_change_callback.cc", | 65 "mock_pref_change_callback.cc", |
| 62 "mock_pref_change_callback.h", | 66 "mock_pref_change_callback.h", |
| 63 "pref_store_observer_mock.cc", | 67 "pref_store_observer_mock.cc", |
| 64 "pref_store_observer_mock.h", | 68 "pref_store_observer_mock.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 81 source_set("unit_tests") { | 85 source_set("unit_tests") { |
| 82 testonly = true | 86 testonly = true |
| 83 sources = [ | 87 sources = [ |
| 84 "default_pref_store_unittest.cc", | 88 "default_pref_store_unittest.cc", |
| 85 "in_memory_pref_store_unittest.cc", | 89 "in_memory_pref_store_unittest.cc", |
| 86 "json_pref_store_unittest.cc", | 90 "json_pref_store_unittest.cc", |
| 87 "overlay_user_pref_store_unittest.cc", | 91 "overlay_user_pref_store_unittest.cc", |
| 88 "pref_change_registrar_unittest.cc", | 92 "pref_change_registrar_unittest.cc", |
| 89 "pref_member_unittest.cc", | 93 "pref_member_unittest.cc", |
| 90 "pref_notifier_impl_unittest.cc", | 94 "pref_notifier_impl_unittest.cc", |
| 95 "pref_observer_store_unittest.cc", |
| 91 "pref_service_unittest.cc", | 96 "pref_service_unittest.cc", |
| 92 "pref_value_map_unittest.cc", | 97 "pref_value_map_unittest.cc", |
| 93 "pref_value_store_unittest.cc", | 98 "pref_value_store_unittest.cc", |
| 94 "scoped_user_pref_update_unittest.cc", | 99 "scoped_user_pref_update_unittest.cc", |
| 95 ] | 100 ] |
| 96 | 101 |
| 97 deps = [ | 102 deps = [ |
| 98 ":test_support", | 103 ":test_support", |
| 99 "//base", | 104 "//base", |
| 100 "//base/test:test_support", | 105 "//base/test:test_support", |
| 106 "//components/prefs/public/interfaces", |
| 101 "//testing/gmock", | 107 "//testing/gmock", |
| 102 "//testing/gtest", | 108 "//testing/gtest", |
| 103 ] | 109 ] |
| 104 } | 110 } |
| OLD | NEW |