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

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

Issue 2799043003: Revert of Pref service: add support for tracked prefs. (Closed)
Patch Set: 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",
32 "tracked_preference.h", 30 "tracked_preference.h",
33 "tracked_preference_helper.cc", 31 "tracked_preference_helper.cc",
34 "tracked_preference_helper.h", 32 "tracked_preference_helper.h",
35 "tracked_preferences_migration.cc", 33 "tracked_preferences_migration.cc",
36 "tracked_preferences_migration.h", 34 "tracked_preferences_migration.h",
37 "tracked_split_preference.cc", 35 "tracked_split_preference.cc",
38 "tracked_split_preference.h", 36 "tracked_split_preference.h",
39 ] 37 ]
40 38
41 if (is_win || is_mac) { 39 if (is_win || is_mac) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 74
77 deps = [ 75 deps = [
78 ":tracked", 76 ":tracked",
79 "//base", 77 "//base",
80 "//base/test:test_support", 78 "//base/test:test_support",
81 "//components/prefs:test_support", 79 "//components/prefs:test_support",
82 "//services/preferences/public/cpp/tracked:test_support", 80 "//services/preferences/public/cpp/tracked:test_support",
83 "//testing/gtest", 81 "//testing/gtest",
84 ] 82 ]
85 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698