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

Side by Side Diff: services/preferences/public/cpp/BUILD.gn

Issue 2759413002: Move PrefStoreManagerImpl into //services/preferences. (Closed)
Patch Set: Update newly-added test. Created 3 years, 9 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 | « services/preferences/pref_store_manager_impl.cc ('k') | services/preferences/public/cpp/DEPS » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("cpp") { 5 source_set("cpp") {
6 sources = [ 6 sources = [
7 "persistent_pref_store_client.cc", 7 "persistent_pref_store_client.cc",
8 "persistent_pref_store_client.h", 8 "persistent_pref_store_client.h",
9 "pref_client_store.cc", 9 "pref_client_store.cc",
10 "pref_client_store.h", 10 "pref_client_store.h",
11 "pref_service_factory.cc", 11 "pref_service_factory.cc",
12 "pref_service_factory.h", 12 "pref_service_factory.h",
13 "pref_store_adapter.cc", 13 "pref_store_adapter.cc",
14 "pref_store_adapter.h", 14 "pref_store_adapter.h",
15 "pref_store_client.cc", 15 "pref_store_client.cc",
16 "pref_store_client.h", 16 "pref_store_client.h",
17 "pref_store_client_mixin.cc", 17 "pref_store_client_mixin.cc",
18 "pref_store_client_mixin.h", 18 "pref_store_client_mixin.h",
19 "pref_store_impl.cc", 19 "pref_store_impl.cc",
20 "pref_store_impl.h", 20 "pref_store_impl.h",
21 "pref_store_manager_impl.cc",
22 "pref_store_manager_impl.h",
23 ] 21 ]
24 22
25 public_deps = [ 23 public_deps = [
26 "//base", 24 "//base",
27 "//components/prefs:prefs", 25 "//components/prefs",
28 "//services/preferences/public/interfaces", 26 "//services/preferences/public/interfaces",
29 "//services/service_manager/public/cpp", 27 "//services/service_manager/public/cpp",
30 ] 28 ]
31 29
32 deps = [ 30 deps = [
33 "//mojo/public/cpp/bindings:bindings", 31 "//mojo/public/cpp/bindings",
34 "//services/preferences",
35 ] 32 ]
36 } 33 }
34
35 source_set("service_main") {
36 deps = [
37 "//base",
38 "//components/prefs",
39 "//services/preferences",
40 "//services/service_manager/public/cpp",
41 ]
42 sources = [
43 "pref_service_main.cc",
44 "pref_service_main.h",
45 ]
46 }
OLDNEW
« no previous file with comments | « services/preferences/pref_store_manager_impl.cc ('k') | services/preferences/public/cpp/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698