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

Side by Side Diff: components/BUILD.gn

Issue 387163002: Move Chrome OS pairing interface to chrome/browser/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Leave chromeos/pairing intact for try jobs Created 6 years, 5 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 | Annotate | Revision Log
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 # Collection of all components. You wouldn't link to this, but this is rather 5 # Collection of all components. You wouldn't link to this, but this is rather
6 # to reference the files so they can be compiled by the build system. 6 # to reference the files so they can be compiled by the build system.
7 group("all_components") { 7 group("all_components") {
8 visibility = "//:*" # Only for the root targets to bring in. 8 visibility = "//:*" # Only for the root targets to bring in.
9 9
10 deps = [ 10 deps = [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "//components/web_modal", 78 "//components/web_modal",
79 "//components/webdata/common", 79 "//components/webdata/common",
80 ] 80 ]
81 81
82 if (is_win || is_mac) { 82 if (is_win || is_mac) {
83 deps += [ 83 deps += [
84 "//components/wifi", 84 "//components/wifi",
85 ] 85 ]
86 } 86 }
87 87
88 if (is_chromeos) {
89 deps += [
90 "//components/pairing",
91 ]
92 }
93
88 if (!is_ios) { 94 if (!is_ios) {
89 deps += [ "//components/keyed_service/content" ] 95 deps += [ "//components/keyed_service/content" ]
90 } 96 }
91 97
92 if (is_android) { 98 if (is_android) {
93 deps -= [ 99 deps -= [
94 "//components/autocomplete", # Should work, needs checking. 100 "//components/autocomplete", # Should work, needs checking.
95 "//components/autofill/content/browser", # Blocked on content/blink. 101 "//components/autofill/content/browser", # Blocked on content/blink.
96 "//components/autofill/content/common", # Blocked on content. 102 "//components/autofill/content/common", # Blocked on content.
97 "//components/autofill/content/renderer", # Blocked on content/blink. 103 "//components/autofill/content/renderer", # Blocked on content/blink.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 "//components/storage_monitor", 150 "//components/storage_monitor",
145 ] 151 ]
146 } 152 }
147 } 153 }
148 154
149 # TODO(GYP) components_unittests 155 # TODO(GYP) components_unittests
150 #test("components_unittests") { 156 #test("components_unittests") {
151 ## # Precache tests need these defines. 157 ## # Precache tests need these defines.
152 # configs += [ "//components/precache/core:precache_config" ] 158 # configs += [ "//components/precache/core:precache_config" ]
153 #} 159 #}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698