| 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 "pref_client_store.cc", | 7 "pref_client_store.cc", |
| 8 "pref_client_store.h", | 8 "pref_client_store.h", |
| 9 "pref_store_adapter.cc", |
| 10 "pref_store_adapter.h", |
| 11 "pref_store_client.cc", |
| 12 "pref_store_client.h", |
| 13 "pref_store_impl.cc", |
| 14 "pref_store_impl.h", |
| 15 "pref_store_manager_impl.cc", |
| 16 "pref_store_manager_impl.h", |
| 9 ] | 17 ] |
| 10 | 18 |
| 11 public_deps = [ | 19 public_deps = [ |
| 12 "//base", | 20 "//base", |
| 13 "//components/prefs:prefs", | 21 "//components/prefs:prefs", |
| 14 "//services/preferences/public/interfaces", | 22 "//services/preferences/public/interfaces", |
| 15 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 16 ] | 24 ] |
| 17 | 25 |
| 18 deps = [ | 26 deps = [ |
| 19 "//mojo/public/cpp/bindings:bindings", | 27 "//mojo/public/cpp/bindings:bindings", |
| 20 ] | 28 ] |
| 21 } | 29 } |
| OLD | NEW |