Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Side by Side Diff: components/user_prefs/tracked/BUILD.gn

Issue 2745563005: Pref service: add support for tracked prefs. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("user_prefs_tracked") { 5 static_library("user_prefs_tracked") {
6 sources = [ 6 sources = [
7 "device_id.h", 7 "device_id.h",
8 "device_id_mac.cc", 8 "device_id_mac.cc",
9 "device_id_stub.cc", 9 "device_id_stub.cc",
10 "device_id_win.cc", 10 "device_id_win.cc",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 public_deps = [ 50 public_deps = [
51 "//services/preferences/public/interfaces", 51 "//services/preferences/public/interfaces",
52 ] 52 ]
53 53
54 deps = [ 54 deps = [
55 "//base:base", 55 "//base:base",
56 "//components/pref_registry", 56 "//components/pref_registry",
57 "//components/prefs", 57 "//components/prefs",
58 "//crypto:crypto", 58 "//crypto:crypto",
59 "//services/preferences/public/interfaces",
59 ] 60 ]
60 } 61 }
61 62
62 static_library("user_prefs_tracked_test_support") { 63 static_library("user_prefs_tracked_test_support") {
63 testonly = true 64 testonly = true
64 sources = [ 65 sources = [
65 "mock_validation_delegate.cc", 66 "mock_validation_delegate.cc",
66 "mock_validation_delegate.h", 67 "mock_validation_delegate.h",
67 ] 68 ]
68 69
(...skipping 17 matching lines...) Expand all
86 87
87 deps = [ 88 deps = [
88 ":user_prefs_tracked", 89 ":user_prefs_tracked",
89 ":user_prefs_tracked_test_support", 90 ":user_prefs_tracked_test_support",
90 "//base:base", 91 "//base:base",
91 "//base/test:test_support", 92 "//base/test:test_support",
92 "//components/prefs:test_support", 93 "//components/prefs:test_support",
93 "//testing/gtest", 94 "//testing/gtest",
94 ] 95 ]
95 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698