OLD | NEW |
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 'BASE_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 'json_pref_store.cc', | 22 'json_pref_store.cc', |
23 'json_pref_store.h', | 23 'json_pref_store.h', |
24 'overlay_user_pref_store.cc', | 24 'overlay_user_pref_store.cc', |
25 'overlay_user_pref_store.h', | 25 'overlay_user_pref_store.h', |
26 'pref_change_registrar.cc', | 26 'pref_change_registrar.cc', |
27 'pref_change_registrar.h', | 27 'pref_change_registrar.h', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 'pref_store_observer_mock.cc', | 78 'pref_store_observer_mock.cc', |
79 'pref_store_observer_mock.h', | 79 'pref_store_observer_mock.h', |
80 'testing_pref_service.cc', | 80 'testing_pref_service.cc', |
81 'testing_pref_service.h', | 81 'testing_pref_service.h', |
82 'testing_pref_store.cc', | 82 'testing_pref_store.cc', |
83 'testing_pref_store.h', | 83 'testing_pref_store.h', |
84 ], | 84 ], |
85 }, | 85 }, |
86 ], | 86 ], |
87 } | 87 } |
OLD | NEW |