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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//headless/headless.gni") | 6 import("//headless/headless.gni") |
7 import("//build/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 | 431 |
432 test("headless_browsertests") { | 432 test("headless_browsertests") { |
433 sources = [ | 433 sources = [ |
434 "lib/embedder_mojo_browsertest.cc", | 434 "lib/embedder_mojo_browsertest.cc", |
435 "lib/headless_browser_browsertest.cc", | 435 "lib/headless_browser_browsertest.cc", |
436 "lib/headless_browser_context_browsertest.cc", | 436 "lib/headless_browser_context_browsertest.cc", |
437 "lib/headless_devtools_client_browsertest.cc", | 437 "lib/headless_devtools_client_browsertest.cc", |
438 "lib/headless_web_contents_browsertest.cc", | 438 "lib/headless_web_contents_browsertest.cc", |
439 "public/util/dom_tree_extractor_browsertest.cc", | 439 "public/util/dom_tree_extractor_browsertest.cc", |
440 "public/util/flat_dom_tree_extractor_browsertest.cc", | 440 "public/util/flat_dom_tree_extractor_browsertest.cc", |
441 "public/util/protocol_handler_request_id_browsertest.cc", | |
442 "test/headless_browser_test.cc", | 441 "test/headless_browser_test.cc", |
443 "test/headless_browser_test.h", | 442 "test/headless_browser_test.h", |
444 "test/headless_test_launcher.cc", | 443 "test/headless_test_launcher.cc", |
445 "test/test_protocol_handler.cc", | 444 "test/test_protocol_handler.cc", |
446 "test/test_protocol_handler.h", | 445 "test/test_protocol_handler.h", |
447 "test/test_url_request_job.cc", | 446 "test/test_url_request_job.cc", |
448 "test/test_url_request_job.h", | 447 "test/test_url_request_job.h", |
449 ] | 448 ] |
450 | 449 |
451 data = [ | 450 data = [ |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 | 520 |
522 executable("headless_example") { | 521 executable("headless_example") { |
523 sources = [ | 522 sources = [ |
524 "app/headless_example.cc", | 523 "app/headless_example.cc", |
525 ] | 524 ] |
526 | 525 |
527 deps = [ | 526 deps = [ |
528 "//headless:headless_shell_lib", | 527 "//headless:headless_shell_lib", |
529 ] | 528 ] |
530 } | 529 } |
OLD | NEW |