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

Side by Side Diff: components/BUILD.gn

Issue 1167703002: Move test runner to a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 233 }
234 234
235 if (!is_ios) { 235 if (!is_ios) {
236 deps += [ 236 deps += [
237 "//components/app_modal", 237 "//components/app_modal",
238 "//components/browsing_data", 238 "//components/browsing_data",
239 "//components/guest_view/browser", 239 "//components/guest_view/browser",
240 "//components/guest_view/common", 240 "//components/guest_view/common",
241 "//components/guest_view/renderer", 241 "//components/guest_view/renderer",
242 "//components/scheduler", 242 "//components/scheduler",
243 "//components/test_runner",
Mike West 2015/06/02 10:30:08 I think you'll want to add a components/test_runne
jochen (gone - plz use gerrit) 2015/06/02 11:58:41 the gyp file covers that
243 ] 244 ]
244 } 245 }
245 246
246 if (toolkit_views) { 247 if (toolkit_views) {
247 deps += [ "//components/constrained_window" ] 248 deps += [ "//components/constrained_window" ]
248 } 249 }
249 } 250 }
250 251
251 # To add a unit test to this target, make a "unit_test" source_set in your 252 # To add a unit test to this target, make a "unit_test" source_set in your
252 # component (it's important to use a source_set instead of a static library or 253 # component (it's important to use a source_set instead of a static library or
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 422
422 deps = [ 423 deps = [
423 "//base", 424 "//base",
424 "//base/test:test_support_perf", 425 "//base/test:test_support_perf",
425 "//testing/gtest", 426 "//testing/gtest",
426 "//testing/perf", 427 "//testing/perf",
427 "//content/test:test_support", 428 "//content/test:test_support",
428 "//components/visitedlink/browser", 429 "//components/visitedlink/browser",
429 ] 430 ]
430 } 431 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698