Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: components/prefs/BUILD.gn

Issue 1881253003: Create a PrefStore in support of Blimp metrics collection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix conflict with ptr migration work. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « android_webview/native/aw_autofill_client.cc ('k') | components/prefs/in_memory_pref_store.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
10 "in_memory_pref_store.h",
9 "json_pref_store.cc", 11 "json_pref_store.cc",
10 "json_pref_store.h", 12 "json_pref_store.h",
11 "overlay_user_pref_store.cc", 13 "overlay_user_pref_store.cc",
12 "overlay_user_pref_store.h", 14 "overlay_user_pref_store.h",
13 "pref_change_registrar.cc", 15 "pref_change_registrar.cc",
14 "pref_change_registrar.h", 16 "pref_change_registrar.h",
15 "pref_member.cc", 17 "pref_member.cc",
16 "pref_member.h", 18 "pref_member.h",
17 "pref_notifier_impl.cc", 19 "pref_notifier_impl.cc",
18 "pref_notifier_impl.h", 20 "pref_notifier_impl.h",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "//base", 80 "//base",
79 "//testing/gmock", 81 "//testing/gmock",
80 "//testing/gtest", 82 "//testing/gtest",
81 ] 83 ]
82 } 84 }
83 85
84 source_set("unit_tests") { 86 source_set("unit_tests") {
85 testonly = true 87 testonly = true
86 sources = [ 88 sources = [
87 "default_pref_store_unittest.cc", 89 "default_pref_store_unittest.cc",
90 "in_memory_pref_store_unittest.cc",
88 "json_pref_store_unittest.cc", 91 "json_pref_store_unittest.cc",
89 "overlay_user_pref_store_unittest.cc", 92 "overlay_user_pref_store_unittest.cc",
90 "pref_change_registrar_unittest.cc", 93 "pref_change_registrar_unittest.cc",
91 "pref_member_unittest.cc", 94 "pref_member_unittest.cc",
92 "pref_notifier_impl_unittest.cc", 95 "pref_notifier_impl_unittest.cc",
93 "pref_service_unittest.cc", 96 "pref_service_unittest.cc",
94 "pref_value_map_unittest.cc", 97 "pref_value_map_unittest.cc",
95 "pref_value_store_unittest.cc", 98 "pref_value_store_unittest.cc",
96 "scoped_user_pref_update_unittest.cc", 99 "scoped_user_pref_update_unittest.cc",
97 ] 100 ]
98 101
99 deps = [ 102 deps = [
100 ":test_support", 103 ":test_support",
101 "//base", 104 "//base",
102 "//base/test:test_support", 105 "//base/test:test_support",
103 "//testing/gmock", 106 "//testing/gmock",
104 "//testing/gtest", 107 "//testing/gtest",
105 ] 108 ]
106 } 109 }
OLDNEW
« no previous file with comments | « android_webview/native/aw_autofill_client.cc ('k') | components/prefs/in_memory_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698