OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 config("headless_implementation") { | 10 config("headless_implementation") { |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
248 "//url", | 248 "//url", |
249 ] | 249 ] |
250 | 250 |
251 configs += [ ":headless_implementation" ] | 251 configs += [ ":headless_implementation" ] |
252 } | 252 } |
253 | 253 |
254 group("headless_tests") { | 254 group("headless_tests") { |
255 testonly = true | 255 testonly = true |
256 | 256 |
257 deps = [ | 257 deps = [ |
258 ":client_api_generator_tests", | |
Nico
2016/10/11 00:18:21
I don't think this helps – client_api_generator_te
Sami
2016/10/11 00:31:37
Okay, let's get rid of the entire target then.
By
| |
259 ":headless_browsertests", | 258 ":headless_browsertests", |
260 ":headless_unittests", | 259 ":headless_unittests", |
261 ] | 260 ] |
262 } | 261 } |
263 | 262 |
264 test("headless_unittests") { | 263 test("headless_unittests") { |
265 sources = [ | 264 sources = [ |
266 "public/domains/types_unittest.cc", | 265 "public/domains/types_unittest.cc", |
267 "public/util/deterministic_dispatcher_test.cc", | 266 "public/util/deterministic_dispatcher_test.cc", |
268 "public/util/error_reporter_unittest.cc", | 267 "public/util/error_reporter_unittest.cc", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
367 sources = [ | 366 sources = [ |
368 "app/headless_shell.cc", | 367 "app/headless_shell.cc", |
369 "app/headless_shell_switches.cc", | 368 "app/headless_shell_switches.cc", |
370 "app/headless_shell_switches.h", | 369 "app/headless_shell_switches.h", |
371 ] | 370 ] |
372 | 371 |
373 deps = [ | 372 deps = [ |
374 "//headless:headless_lib", | 373 "//headless:headless_lib", |
375 ] | 374 ] |
376 } | 375 } |
OLD | NEW |