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

Side by Side Diff: components/BUILD.gn

Issue 426093003: Add the copresence component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | components/OWNERS » ('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 # 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 "//components/user_prefs", # Blocked on content. 152 "//components/user_prefs", # Blocked on content.
153 "//components/visitedlink/browser", # Blocked on content. 153 "//components/visitedlink/browser", # Blocked on content.
154 "//components/visitedlink/common", # Blocked on content. 154 "//components/visitedlink/common", # Blocked on content.
155 "//components/visitedlink/renderer", # Blocked on blink 155 "//components/visitedlink/renderer", # Blocked on blink
156 "//components/web_modal", # Blocked on content. 156 "//components/web_modal", # Blocked on content.
157 ] 157 ]
158 } 158 }
159 159
160 if (!is_ios && !is_android) { 160 if (!is_ios && !is_android) {
161 deps += [ 161 deps += [
162 "//components/copresence",
162 "//components/storage_monitor", 163 "//components/storage_monitor",
163 ] 164 ]
164 } 165 }
165 } 166 }
166 167
167 # TODO(GYP) enable when it links. 168 # TODO(GYP) enable when it links.
168 if (false) { 169 if (false) {
169 170
170 # To add a unit test to this target, make a "unit_test" source_set in your 171 # To add a unit test to this target, make a "unit_test" source_set in your
171 # component (it's important to use a source_set instead of a static library or 172 # component (it's important to use a source_set instead of a static library or
(...skipping 23 matching lines...) Expand all
195 ] 196 ]
196 197
197 # TODO(GYP) need this target. 198 # TODO(GYP) need this target.
198 #'breakpad/app/crash_keys_win_unittest.cc', 199 #'breakpad/app/crash_keys_win_unittest.cc',
199 200
200 # Precache tests need these defines. 201 # Precache tests need these defines.
201 #configs += [ "//components/precache/core:precache_config" ] 202 #configs += [ "//components/precache/core:precache_config" ]
202 } 203 }
203 204
204 } 205 }
OLDNEW
« no previous file with comments | « no previous file | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698