BUILD.gn revision 116680a4aac90f2aa7413d9095a592090648e557
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
3# found in the LICENSE file.
4
5component("pref_registry") {
6  sources = [
7    "pref_registry_export.h",
8    "pref_registry_syncable.cc",
9    "pref_registry_syncable.h",
10  ]
11
12  defines = [
13    "PREF_REGISTRY_IMPLEMENTATION",
14  ]
15
16  deps = [
17    "//base",
18    "//base:prefs",
19    "//base/third_party/dynamic_annotations",
20    "//ui/base",
21  ]
22}
23
24source_set("pref_registry_test_support") {
25  sources = [
26    "testing_pref_service_syncable.cc",
27    "testing_pref_service_syncable.h",
28  ]
29
30  deps = [
31    ":pref_registry",
32  ]
33}
34