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

Side by Side Diff: services/preferences/tracked/BUILD.gn

Issue 2745563005: Pref service: add support for tracked prefs. (Closed)
Patch Set: deflake tests Created 3 years, 8 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 source_set("tracked") { 5 source_set("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",
11 "dictionary_hash_store_contents.cc", 11 "dictionary_hash_store_contents.cc",
12 "dictionary_hash_store_contents.h", 12 "dictionary_hash_store_contents.h",
13 "hash_store_contents.h", 13 "hash_store_contents.h",
14 "interceptable_pref_filter.cc", 14 "interceptable_pref_filter.cc",
15 "interceptable_pref_filter.h", 15 "interceptable_pref_filter.h",
16 "pref_hash_calculator.cc", 16 "pref_hash_calculator.cc",
17 "pref_hash_calculator.h", 17 "pref_hash_calculator.h",
18 "pref_hash_filter.cc", 18 "pref_hash_filter.cc",
19 "pref_hash_filter.h", 19 "pref_hash_filter.h",
20 "pref_hash_store.h", 20 "pref_hash_store.h",
21 "pref_hash_store_impl.cc", 21 "pref_hash_store_impl.cc",
22 "pref_hash_store_impl.h", 22 "pref_hash_store_impl.h",
23 "pref_hash_store_transaction.h", 23 "pref_hash_store_transaction.h",
24 "registry_hash_store_contents_win.cc", 24 "registry_hash_store_contents_win.cc",
25 "registry_hash_store_contents_win.h", 25 "registry_hash_store_contents_win.h",
26 "segregated_pref_store.cc", 26 "segregated_pref_store.cc",
27 "segregated_pref_store.h", 27 "segregated_pref_store.h",
28 "tracked_atomic_preference.cc", 28 "tracked_atomic_preference.cc",
29 "tracked_atomic_preference.h", 29 "tracked_atomic_preference.h",
30 "tracked_persistent_pref_store_factory.cc",
31 "tracked_persistent_pref_store_factory.h",
30 "tracked_preference.h", 32 "tracked_preference.h",
31 "tracked_preference_helper.cc", 33 "tracked_preference_helper.cc",
32 "tracked_preference_helper.h", 34 "tracked_preference_helper.h",
33 "tracked_preferences_migration.cc", 35 "tracked_preferences_migration.cc",
34 "tracked_preferences_migration.h", 36 "tracked_preferences_migration.h",
35 "tracked_split_preference.cc", 37 "tracked_split_preference.cc",
36 "tracked_split_preference.h", 38 "tracked_split_preference.h",
37 ] 39 ]
38 40
39 if (is_win || is_mac) { 41 if (is_win || is_mac) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 76
75 deps = [ 77 deps = [
76 ":tracked", 78 ":tracked",
77 "//base", 79 "//base",
78 "//base/test:test_support", 80 "//base/test:test_support",
79 "//components/prefs:test_support", 81 "//components/prefs:test_support",
80 "//services/preferences/public/cpp/tracked:test_support", 82 "//services/preferences/public/cpp/tracked:test_support",
81 "//testing/gtest", 83 "//testing/gtest",
82 ] 84 ]
83 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698