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

Side by Side Diff: components/sync_driver/BUILD.gn

Issue 1417743003: Lots of misc bug fixes to make the GN build of ios work again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert mac_deployment_target change Created 5 years, 1 month 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/sessions/BUILD.gn ('k') | net/BUILD.gn » ('j') | 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 source_set("sync_driver") { 7 source_set("sync_driver") {
8 sources = [ 8 sources = [
9 "about_sync_util.cc", 9 "about_sync_util.cc",
10 "about_sync_util.h", 10 "about_sync_util.h",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 "system_encryptor_unittest.cc", 224 "system_encryptor_unittest.cc",
225 "tab_node_pool_unittest.cc", 225 "tab_node_pool_unittest.cc",
226 "ui_data_type_controller_unittest.cc", 226 "ui_data_type_controller_unittest.cc",
227 ] 227 ]
228 deps = [ 228 deps = [
229 ":test_support", 229 ":test_support",
230 "//base", 230 "//base",
231 "//base:prefs_test_support", 231 "//base:prefs_test_support",
232 "//base/test:test_support", 232 "//base/test:test_support",
233 "//components/os_crypt", 233 "//components/os_crypt",
234 "//components/policy",
235 "//components/policy:policy_component",
236 "//components/pref_registry:test_support", 234 "//components/pref_registry:test_support",
237 "//components/version_info", 235 "//components/version_info",
238 "//net:test_support", 236 "//net:test_support",
239 "//sync:test_support_sync_internal_api", 237 "//sync:test_support_sync_internal_api",
240 "//sync:test_support_sync_api", 238 "//sync:test_support_sync_api",
241 "//testing/gmock", 239 "//testing/gmock",
242 "//testing/gtest", 240 "//testing/gtest",
243 "//url", 241 "//url",
244 ] 242 ]
245 243
246 if (enable_configuration_policy) { 244 if (enable_configuration_policy) {
247 sources += [ "sync_policy_handler_unittest.cc" ] 245 sources += [ "sync_policy_handler_unittest.cc" ]
246 deps += [
247 "//components/policy",
248 "//components/policy:policy_component",
249 ]
248 } 250 }
249 } 251 }
OLDNEW
« no previous file with comments | « components/sessions/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698