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

Side by Side Diff: components/BUILD.gn

Issue 1103943003: Add components/chrome_apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename component_apps -> chrome_apps Created 5 years, 7 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
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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
11 # to reference the files so they can be compiled by the build system. 11 # to reference the files so they can be compiled by the build system.
12 group("all_components") { 12 group("all_components") {
13 testonly = true # You shouldn't actually link to this. 13 testonly = true # You shouldn't actually link to this.
14 visibility = [ "//:*" ] # Only for the root targets to bring in. 14 visibility = [ "//:*" ] # Only for the root targets to bring in.
15 15
16 deps = [ 16 deps = [
17 "//components/auto_login_parser", 17 "//components/auto_login_parser",
18 "//components/autofill/content/browser", 18 "//components/autofill/content/browser",
19 "//components/autofill/content/common", 19 "//components/autofill/content/common",
20 "//components/autofill/content/renderer", 20 "//components/autofill/content/renderer",
21 "//components/bookmarks/browser", 21 "//components/bookmarks/browser",
22 "//components/bookmarks/common", 22 "//components/bookmarks/common",
23 "//components/bookmarks/managed", 23 "//components/bookmarks/managed",
24 "//components/bookmarks/test", 24 "//components/bookmarks/test",
25 "//components/captive_portal", 25 "//components/captive_portal",
26 "//components/cdm/browser", 26 "//components/cdm/browser",
27 "//components/cdm/common", 27 "//components/cdm/common",
28 "//components/cdm/renderer", 28 "//components/cdm/renderer",
29 "//components/cloud_devices/common", 29 "//components/cloud_devices/common",
30 "//components/chrome_apps",
30 "//components/component_updater", 31 "//components/component_updater",
31 "//components/content_settings/core/browser", 32 "//components/content_settings/core/browser",
32 "//components/content_settings/core/common", 33 "//components/content_settings/core/common",
33 "//components/crash/app", 34 "//components/crash/app",
34 "//components/crash/browser", 35 "//components/crash/browser",
35 "//components/crx_file", 36 "//components/crx_file",
36 "//components/data_reduction_proxy/core/browser", 37 "//components/data_reduction_proxy/core/browser",
37 "//components/data_reduction_proxy/core/common", 38 "//components/data_reduction_proxy/core/common",
38 "//components/device_event_log", 39 "//components/device_event_log",
39 "//components/devtools_discovery", 40 "//components/devtools_discovery",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 135
135 if (!is_win && !is_mac) { 136 if (!is_win && !is_mac) {
136 deps -= [ "//components/wifi" ] 137 deps -= [ "//components/wifi" ]
137 } 138 }
138 if (!is_chromeos) { 139 if (!is_chromeos) {
139 deps -= [ 140 deps -= [
140 "//components/pairing", 141 "//components/pairing",
141 "//components/wifi_sync", 142 "//components/wifi_sync",
142 ] 143 ]
143 } 144 }
145
146 if (!is_chromeos || !enable_extensions) {
147 deps -= [ "//components/chrome_apps" ]
148 }
149
144 if (is_ios) { 150 if (is_ios) {
145 deps -= [ 151 deps -= [
146 "//components/history/content/browser", 152 "//components/history/content/browser",
147 "//components/keyed_service/content", 153 "//components/keyed_service/content",
148 "//components/webui_generator", 154 "//components/webui_generator",
149 ] 155 ]
150 } 156 }
151 157
152 if (!enable_plugins) { 158 if (!enable_plugins) {
153 deps -= [ 159 deps -= [
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 422
417 deps = [ 423 deps = [
418 "//base", 424 "//base",
419 "//base/test:test_support_perf", 425 "//base/test:test_support_perf",
420 "//testing/gtest", 426 "//testing/gtest",
421 "//testing/perf", 427 "//testing/perf",
422 "//content/test:test_support", 428 "//content/test:test_support",
423 "//components/visitedlink/browser", 429 "//components/visitedlink/browser",
424 ] 430 ]
425 } 431 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698