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

Side by Side Diff: components/BUILD.gn

Issue 1181703008: Removed webui_generator and new OOBE UI placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed empty line. Created 5 years, 6 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 | « chrome/common/url_constants.cc ('k') | components/components.gyp » ('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 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "//components/visitedlink/common", 115 "//components/visitedlink/common",
116 "//components/visitedlink/renderer", 116 "//components/visitedlink/renderer",
117 "//components/wallpaper", 117 "//components/wallpaper",
118 "//components/web_cache/browser", 118 "//components/web_cache/browser",
119 "//components/web_cache/common", 119 "//components/web_cache/common",
120 "//components/web_cache/renderer", 120 "//components/web_cache/renderer",
121 "//components/web_modal", 121 "//components/web_modal",
122 "//components/web_resource", 122 "//components/web_resource",
123 "//components/webcrypto", 123 "//components/webcrypto",
124 "//components/webdata/common", 124 "//components/webdata/common",
125 "//components/webui_generator",
126 "//components/wifi", 125 "//components/wifi",
127 "//components/wifi_sync", 126 "//components/wifi_sync",
128 ] 127 ]
129 128
130 if (!is_android && !is_ios) { 129 if (!is_android && !is_ios) {
131 deps += [ 130 deps += [
132 "//components/proximity_auth", 131 "//components/proximity_auth",
133 "//components/proximity_auth/cryptauth", 132 "//components/proximity_auth/cryptauth",
134 ] 133 ]
135 } 134 }
(...skipping 13 matching lines...) Expand all
149 } 148 }
150 149
151 if (!is_chromeos || !enable_extensions) { 150 if (!is_chromeos || !enable_extensions) {
152 deps -= [ "//components/chrome_apps" ] 151 deps -= [ "//components/chrome_apps" ]
153 } 152 }
154 153
155 if (is_ios) { 154 if (is_ios) {
156 deps -= [ 155 deps -= [
157 "//components/history/content/browser", 156 "//components/history/content/browser",
158 "//components/keyed_service/content", 157 "//components/keyed_service/content",
159 "//components/webui_generator",
160 ] 158 ]
161 } 159 }
162 160
163 if (!enable_plugins) { 161 if (!enable_plugins) {
164 deps -= [ 162 deps -= [
165 "//components/pdf/browser", 163 "//components/pdf/browser",
166 "//components/pdf/common", 164 "//components/pdf/common",
167 "//components/pdf/renderer", 165 "//components/pdf/renderer",
168 ] 166 ]
169 } 167 }
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "//content/test:test_support", 388 "//content/test:test_support",
391 "//device/bluetooth", 389 "//device/bluetooth",
392 "//testing/gmock", 390 "//testing/gmock",
393 "//testing/gtest", 391 "//testing/gtest",
394 "//ui/base", 392 "//ui/base",
395 ] 393 ]
396 394
397 data_deps = [ ":components_tests_pak" ] 395 data_deps = [ ":components_tests_pak" ]
398 396
399 if (is_android) { 397 if (is_android) {
400 sources += [ 398 sources += [ "test/android/browsertests_apk/components_browser_tests_jni_onl oad.cc" ]
401 "test/android/browsertests_apk/components_browser_tests_jni_onload.cc",
402 ]
403 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] 399 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ]
404 deps += [ "//testing/android/native_test:native_test_support" ] 400 deps += [ "//testing/android/native_test:native_test_support" ]
405 use_launcher = false 401 use_launcher = false
406 isolate_file = "components_browsertests.isolate" 402 isolate_file = "components_browsertests.isolate"
407 } 403 }
408 404
409 if (is_linux) { 405 if (is_linux) {
410 # content_extractor_browsertest is a standalone content extraction tool buil t as 406 # content_extractor_browsertest is a standalone content extraction tool buil t as
411 # a MANUAL component_browsertest. 407 # a MANUAL component_browsertest.
412 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] 408 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ]
(...skipping 15 matching lines...) Expand all
428 424
429 deps = [ 425 deps = [
430 "//base", 426 "//base",
431 "//base/test:test_support_perf", 427 "//base/test:test_support_perf",
432 "//testing/gtest", 428 "//testing/gtest",
433 "//testing/perf", 429 "//testing/perf",
434 "//content/test:test_support", 430 "//content/test:test_support",
435 "//components/visitedlink/browser", 431 "//components/visitedlink/browser",
436 ] 432 ]
437 } 433 }
OLDNEW
« no previous file with comments | « chrome/common/url_constants.cc ('k') | components/components.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698