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

Side by Side Diff: components/BUILD.gn

Issue 709683004: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-1-security-class
Patch Set: test integration with chromeos network settings backend Created 6 years 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 249
249 # Precache tests need these defines. 250 # Precache tests need these defines.
250 #configs += [ "//components/precache/core:precache_config" ] 251 #configs += [ "//components/precache/core:precache_config" ]
251 252
252 if (toolkit_views) { 253 if (toolkit_views) {
253 deps += [ "//components/constrained_window:unit_tests" ] 254 deps += [ "//components/constrained_window:unit_tests" ]
254 } 255 }
255 } 256 }
256 257
257 } 258 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698