OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("pref_registry") { | 5 static_library("pref_registry") { |
6 sources = [ | 6 sources = [ |
7 "pref_registry_syncable.cc", | 7 "pref_registry_syncable.cc", |
8 "pref_registry_syncable.h", | 8 "pref_registry_syncable.h", |
9 ] | 9 ] |
10 | 10 |
11 deps = [ | 11 deps = [ |
12 "//base", | 12 "//base", |
13 "//base/third_party/dynamic_annotations", | 13 "//base/third_party/dynamic_annotations", |
14 "//components/prefs", | 14 "//components/prefs", |
15 ] | 15 ] |
16 } | 16 } |
17 | |
18 static_library("test_support") { | |
19 testonly = true | |
20 sources = [ | |
21 "testing_pref_service_syncable.cc", | |
22 "testing_pref_service_syncable.h", | |
23 ] | |
24 | |
25 public_deps = [ | |
26 ":pref_registry", | |
27 ] | |
28 | |
29 deps = [ | |
30 "//base", | |
31 "//components/prefs:test_support", | |
32 ] | |
33 } | |
OLD | NEW |