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

Side by Side Diff: components/sync_driver.gypi

Issue 1806873002: Add an infrastructure to query history.google.com about other forms of browsing history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a new component. Created 4 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/sync_driver 8 # GN version: //components/sync_driver
9 'target_name': 'sync_driver', 9 'target_name': 'sync_driver',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../net/net.gyp:net', 13 '../net/net.gyp:net',
14 '../sync/sync.gyp:sync', 14 '../sync/sync.gyp:sync',
15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
17 'data_use_measurement_core', 17 'data_use_measurement_core',
18 'invalidation_public', 18 'invalidation_public',
19 'metrics', 19 'metrics',
20 'os_crypt', 20 'os_crypt',
21 'signin_core_browser', 21 'signin_core_browser',
22 'version_info', 22 'version_info',
23 ], 23 ],
24 'export_dependent_settings': [ 24 'export_dependent_settings': [
25 '../sync/sync.gyp:sync',
sdefresne 2016/03/17 13:11:20 ditto
25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 26 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
26 ], 27 ],
27 'include_dirs': [ 28 'include_dirs': [
28 '..', 29 '..',
29 ], 30 ],
30 'sources': [ 31 'sources': [
31 # Note: file list duplicated in GN build. 32 # Note: file list duplicated in GN build.
32 'sync_driver/about_sync_util.cc', 33 'sync_driver/about_sync_util.cc',
33 'sync_driver/about_sync_util.h', 34 'sync_driver/about_sync_util.h',
34 'sync_driver/backend_data_type_configurer.cc', 35 'sync_driver/backend_data_type_configurer.cc',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'sync_driver/model_associator_mock.cc', 201 'sync_driver/model_associator_mock.cc',
201 'sync_driver/model_associator_mock.h', 202 'sync_driver/model_associator_mock.h',
202 'sync_driver/non_ui_data_type_controller_mock.cc', 203 'sync_driver/non_ui_data_type_controller_mock.cc',
203 'sync_driver/non_ui_data_type_controller_mock.h', 204 'sync_driver/non_ui_data_type_controller_mock.h',
204 'sync_driver/sync_api_component_factory_mock.cc', 205 'sync_driver/sync_api_component_factory_mock.cc',
205 'sync_driver/sync_api_component_factory_mock.h', 206 'sync_driver/sync_api_component_factory_mock.h',
206 ], 207 ],
207 }, 208 },
208 ], 209 ],
209 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698