| 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", |
| 11 "pref_store_adapter.cc", | 11 "pref_store_adapter.cc", |
| 12 "pref_store_adapter.h", | 12 "pref_store_adapter.h", |
| 13 "pref_store_client.cc", | 13 "pref_store_client.cc", |
| 14 "pref_store_client.h", | 14 "pref_store_client.h", |
| 15 "pref_store_client_mixin.cc", | 15 "pref_store_client_mixin.cc", |
| 16 "pref_store_client_mixin.h", | 16 "pref_store_client_mixin.h", |
| 17 "pref_store_impl.cc", | 17 "pref_store_impl.cc", |
| 18 "pref_store_impl.h", | 18 "pref_store_impl.h", |
| 19 "pref_store_manager_impl.cc", | |
| 20 "pref_store_manager_impl.h", | |
| 21 ] | 19 ] |
| 22 | 20 |
| 23 public_deps = [ | 21 public_deps = [ |
| 24 "//base", | 22 "//base", |
| 25 "//components/prefs:prefs", | 23 "//components/prefs", |
| 26 "//services/preferences/public/interfaces", | 24 "//services/preferences/public/interfaces", |
| 27 "//services/service_manager/public/cpp", | 25 "//services/service_manager/public/cpp", |
| 28 ] | 26 ] |
| 29 | 27 |
| 30 deps = [ | 28 deps = [ |
| 31 "//mojo/public/cpp/bindings:bindings", | 29 "//mojo/public/cpp/bindings", |
| 32 "//services/preferences", | |
| 33 ] | 30 ] |
| 34 } | 31 } |
| 32 |
| 33 source_set("service_main") { |
| 34 deps = [ |
| 35 "//base", |
| 36 "//components/prefs", |
| 37 "//services/preferences", |
| 38 "//services/service_manager/public/cpp", |
| 39 ] |
| 40 sources = [ |
| 41 "pref_service_main.cc", |
| 42 "pref_service_main.h", |
| 43 ] |
| 44 } |
| OLD | NEW |