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

Side by Side Diff: components/BUILD.gn

Issue 675993005: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: remove stub wifi_credential_syncable_service Created 6 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
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 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 # Collection of all components. You wouldn't link to this, but this is rather 8 # Collection of all components. You wouldn't link to this, but this is rather
9 # to reference the files so they can be compiled by the build system. 9 # to reference the files so they can be compiled by the build system.
10 group("all_components") { 10 group("all_components") {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "//components/variations", 100 "//components/variations",
101 "//components/visitedlink/browser", 101 "//components/visitedlink/browser",
102 "//components/visitedlink/common", 102 "//components/visitedlink/common",
103 "//components/visitedlink/renderer", 103 "//components/visitedlink/renderer",
104 "//components/web_cache/browser", 104 "//components/web_cache/browser",
105 "//components/web_cache/common", 105 "//components/web_cache/common",
106 "//components/web_cache/renderer", 106 "//components/web_cache/renderer",
107 "//components/web_modal", 107 "//components/web_modal",
108 "//components/webdata/common", 108 "//components/webdata/common",
109 "//components/wifi", 109 "//components/wifi",
110 "//components/wifi_sync",
110 ] 111 ]
111 112
112 if (!is_win && !is_mac) { 113 if (!is_win && !is_mac) {
113 deps -= [ "//components/wifi" ] 114 deps -= [ "//components/wifi" ]
114 } 115 }
115 if (!is_chromeos) { 116 if (!is_chromeos) {
116 deps -= [ "//components/pairing" ] 117 deps -= [ "//components/pairing" ]
117 } 118 }
118 if (is_ios) { 119 if (is_ios) {
119 deps -= [ 120 deps -= [
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "//components/data_reduction_proxy/core/browser:unit_tests", 231 "//components/data_reduction_proxy/core/browser:unit_tests",
231 "//components/data_reduction_proxy/core/common:unit_tests", 232 "//components/data_reduction_proxy/core/common:unit_tests",
232 "//components/dom_distiller/core:unit_tests", 233 "//components/dom_distiller/core:unit_tests",
233 "//components/domain_reliability:unit_tests", 234 "//components/domain_reliability:unit_tests",
234 "//components/login:unit_tests", 235 "//components/login:unit_tests",
235 "//components/metrics:unit_tests", 236 "//components/metrics:unit_tests",
236 "//components/omnibox:unit_tests", 237 "//components/omnibox:unit_tests",
237 "//components/ownership:unit_tests", 238 "//components/ownership:unit_tests",
238 "//components/proximity_auth:unit_tests", 239 "//components/proximity_auth:unit_tests",
239 "//components/variations:unit_tests", 240 "//components/variations:unit_tests",
241 "//components/wifi_sync:unit_tests",
240 ] 242 ]
241 243
242 # TODO(GYP) need this target. 244 # TODO(GYP) need this target.
243 #'breakpad/app/crash_keys_win_unittest.cc', 245 #'breakpad/app/crash_keys_win_unittest.cc',
244 246
245 # Precache tests need these defines. 247 # Precache tests need these defines.
246 #configs += [ "//components/precache/core:precache_config" ] 248 #configs += [ "//components/precache/core:precache_config" ]
247 249
248 if (toolkit_views) { 250 if (toolkit_views) {
249 deps += [ "//components/constrained_window:unit_tests" ] 251 deps += [ "//components/constrained_window:unit_tests" ]
250 } 252 }
251 } 253 }
252 254
253 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698