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