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

Side by Side Diff: components/BUILD.gn

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: rebase Created 3 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//rlz/features/features.gni") 9 import("//rlz/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "//components/update_client:unit_tests", 149 "//components/update_client:unit_tests",
150 "//components/upload_list:unit_tests", 150 "//components/upload_list:unit_tests",
151 "//components/url_formatter:unit_tests", 151 "//components/url_formatter:unit_tests",
152 "//components/url_matcher:unit_tests", 152 "//components/url_matcher:unit_tests",
153 "//components/variations:unit_tests", 153 "//components/variations:unit_tests",
154 "//components/variations/service:unit_tests", 154 "//components/variations/service:unit_tests",
155 "//components/web_resource:unit_tests", 155 "//components/web_resource:unit_tests",
156 "//components/webdata/common:unit_tests", 156 "//components/webdata/common:unit_tests",
157 ] 157 ]
158 158
159 if (toolkit_views && use_aura) {
160 deps += [ "//components/ui_devtools/devtools:unit_tests" ]
161 }
162
159 if (enable_nacl) { 163 if (enable_nacl) {
160 deps += [ "//components/nacl/browser:unit_tests" ] 164 deps += [ "//components/nacl/browser:unit_tests" ]
161 } 165 }
162 166
163 if (is_ios) { 167 if (is_ios) {
164 deps += [ 168 deps += [
165 "//components/image_fetcher/ios:unit_tests", 169 "//components/image_fetcher/ios:unit_tests",
166 "//components/signin/ios/browser:unit_tests", 170 "//components/signin/ios/browser:unit_tests",
167 "//components/translate/ios/browser:unit_tests", 171 "//components/translate/ios/browser:unit_tests",
168 ] 172 ]
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 "//testing/perf", 513 "//testing/perf",
510 "//url", 514 "//url",
511 ] 515 ]
512 516
513 if (!is_ios) { 517 if (!is_ios) {
514 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ] 518 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ]
515 deps += [ "//components/discardable_memory/common" ] 519 deps += [ "//components/discardable_memory/common" ]
516 } 520 }
517 } 521 }
518 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698