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

Side by Side Diff: components/BUILD.gn

Issue 1414583004: Fix gyp/gn with configuration_policy=0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert remoting_host change Created 5 years, 2 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
« no previous file with comments | « android_webview/android_webview.gyp ('k') | no next file » | 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 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
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "//components/packed_ct_ev_whitelist", 102 "//components/packed_ct_ev_whitelist",
103 "//components/pairing", 103 "//components/pairing",
104 "//components/password_manager/content/browser", 104 "//components/password_manager/content/browser",
105 "//components/password_manager/core/browser", 105 "//components/password_manager/core/browser",
106 "//components/password_manager/core/common", 106 "//components/password_manager/core/common",
107 "//components/pdf/browser", 107 "//components/pdf/browser",
108 "//components/pdf/common", 108 "//components/pdf/common",
109 "//components/pdf/renderer", 109 "//components/pdf/renderer",
110 "//components/plugins/common", 110 "//components/plugins/common",
111 "//components/plugins/renderer", 111 "//components/plugins/renderer",
112 "//components/policy",
113 "//components/power", 112 "//components/power",
114 "//components/precache/core", 113 "//components/precache/core",
115 "//components/precache/content", 114 "//components/precache/content",
116 "//components/proxy_config", 115 "//components/proxy_config",
117 "//components/query_parser", 116 "//components/query_parser",
118 "//components/rappor", 117 "//components/rappor",
119 "//components/renderer_context_menu", 118 "//components/renderer_context_menu",
120 "//components/resources:components_resources", 119 "//components/resources:components_resources",
121 "//components/search_provider_logos", 120 "//components/search_provider_logos",
122 "//components/security_interstitials/core", 121 "//components/security_interstitials/core",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "//components/certificate_transparency", 161 "//components/certificate_transparency",
163 "//components/guest_view/browser", 162 "//components/guest_view/browser",
164 "//components/guest_view/common", 163 "//components/guest_view/common",
165 "//components/guest_view/renderer", 164 "//components/guest_view/renderer",
166 "//components/safe_json", 165 "//components/safe_json",
167 "//components/scheduler", 166 "//components/scheduler",
168 "//components/test_runner", 167 "//components/test_runner",
169 "//components/webcrypto", 168 "//components/webcrypto",
170 ] 169 ]
171 170
171 if (enable_configuration_policy) {
172 deps += [ "//components/policy" ]
173 }
174
172 if (!is_chromeos || !enable_extensions) { 175 if (!is_chromeos || !enable_extensions) {
173 deps -= [ "//components/chrome_apps" ] 176 deps -= [ "//components/chrome_apps" ]
174 } 177 }
175 178
176 if (!enable_plugins) { 179 if (!enable_plugins) {
177 deps -= [ 180 deps -= [
178 "//components/pdf/browser", 181 "//components/pdf/browser",
179 "//components/pdf/common", 182 "//components/pdf/common",
180 "//components/pdf/renderer", 183 "//components/pdf/renderer",
181 ] 184 ]
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 ] 603 ]
601 if (!is_ios) { 604 if (!is_ios) {
602 deps += [ 605 deps += [
603 "//base", 606 "//base",
604 "//base/test:test_support_perf", 607 "//base/test:test_support_perf",
605 "//content/test:test_support", 608 "//content/test:test_support",
606 "//components/visitedlink/browser", 609 "//components/visitedlink/browser",
607 ] 610 ]
608 } 611 }
609 } 612 }
OLDNEW
« no previous file with comments | « android_webview/android_webview.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698