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

Side by Side Diff: components/sync_driver.gypi

Issue 1371743003: Add missing dependency of sync_driver on policy_component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | 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 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',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'sessions_content', 150 'sessions_content',
151 ], 151 ],
152 }, { # OS==ios 152 }, { # OS==ios
153 'dependencies': [ 153 'dependencies': [
154 'sessions_ios', 154 'sessions_ios',
155 ], 155 ],
156 }], 156 }],
157 ['configuration_policy==1', { 157 ['configuration_policy==1', {
158 'dependencies': [ 158 'dependencies': [
159 'policy', 159 'policy',
160 'policy_component',
160 ], 161 ],
161 'sources': [ 162 'sources': [
162 'sync_driver/sync_policy_handler.cc', 163 'sync_driver/sync_policy_handler.cc',
163 'sync_driver/sync_policy_handler.h', 164 'sync_driver/sync_policy_handler.h',
164 ], 165 ],
165 }], 166 }],
166 ], 167 ],
167 }, 168 },
168 { 169 {
169 'target_name': 'sync_driver_test_support', 170 'target_name': 'sync_driver_test_support',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'sync_driver/local_device_info_provider_mock.cc', 202 'sync_driver/local_device_info_provider_mock.cc',
202 'sync_driver/local_device_info_provider_mock.h', 203 'sync_driver/local_device_info_provider_mock.h',
203 'sync_driver/model_associator_mock.cc', 204 'sync_driver/model_associator_mock.cc',
204 'sync_driver/model_associator_mock.h', 205 'sync_driver/model_associator_mock.h',
205 'sync_driver/non_ui_data_type_controller_mock.cc', 206 'sync_driver/non_ui_data_type_controller_mock.cc',
206 'sync_driver/non_ui_data_type_controller_mock.h', 207 'sync_driver/non_ui_data_type_controller_mock.h',
207 ], 208 ],
208 }, 209 },
209 ], 210 ],
210 } 211 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698