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

Side by Side Diff: components/prefs/prefs.gyp

Issue 1881253003: Create a PrefStore in support of Blimp metrics collection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix conflict with ptr migration work. Created 4 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
« no previous file with comments | « components/prefs/in_memory_pref_store_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'prefs', 8 'target_name': 'prefs',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
11 '../../base/base.gyp:base', 11 '../../base/base.gyp:base',
12 ], 12 ],
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'defines': [ 16 'defines': [
17 'COMPONENTS_PREFS_IMPLEMENTATION', 17 'COMPONENTS_PREFS_IMPLEMENTATION',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'default_pref_store.cc', 20 'default_pref_store.cc',
21 'default_pref_store.h', 21 'default_pref_store.h',
22 'in_memory_pref_store.cc',
23 'in_memory_pref_store.h',
22 'json_pref_store.cc', 24 'json_pref_store.cc',
23 'json_pref_store.h', 25 'json_pref_store.h',
24 'overlay_user_pref_store.cc', 26 'overlay_user_pref_store.cc',
25 'overlay_user_pref_store.h', 27 'overlay_user_pref_store.h',
26 'pref_change_registrar.cc', 28 'pref_change_registrar.cc',
27 'pref_change_registrar.h', 29 'pref_change_registrar.h',
28 'pref_member.cc', 30 'pref_member.cc',
29 'pref_member.h', 31 'pref_member.h',
30 'pref_notifier_impl.cc', 32 'pref_notifier_impl.cc',
31 'pref_notifier_impl.h', 33 'pref_notifier_impl.h',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'pref_store_observer_mock.cc', 80 'pref_store_observer_mock.cc',
79 'pref_store_observer_mock.h', 81 'pref_store_observer_mock.h',
80 'testing_pref_service.cc', 82 'testing_pref_service.cc',
81 'testing_pref_service.h', 83 'testing_pref_service.h',
82 'testing_pref_store.cc', 84 'testing_pref_store.cc',
83 'testing_pref_store.h', 85 'testing_pref_store.h',
84 ], 86 ],
85 }, 87 },
86 ], 88 ],
87 } 89 }
OLDNEW
« no previous file with comments | « components/prefs/in_memory_pref_store_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698