OLD | NEW |
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", |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 public_deps = [ | 23 public_deps = [ |
24 "//base", | 24 "//base", |
25 "//components/prefs:prefs", | 25 "//components/prefs:prefs", |
26 "//services/preferences/public/interfaces", | 26 "//services/preferences/public/interfaces", |
27 "//services/service_manager/public/cpp", | 27 "//services/service_manager/public/cpp", |
28 ] | 28 ] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 "//mojo/public/cpp/bindings:bindings", | 31 "//mojo/public/cpp/bindings:bindings", |
| 32 "//services/preferences", |
32 ] | 33 ] |
33 } | 34 } |
OLD | NEW |