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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 | 445 |
446 outputs = [ | 446 outputs = [ |
447 "$root_out_dir/Helpers/{{source_file_part}}", | 447 "$root_out_dir/Helpers/{{source_file_part}}", |
448 ] | 448 ] |
449 } | 449 } |
450 } | 450 } |
451 | 451 |
452 test("headless_browsertests") { | 452 test("headless_browsertests") { |
453 sources = [ | 453 sources = [ |
454 "lib/embedder_mojo_browsertest.cc", | 454 "lib/embedder_mojo_browsertest.cc", |
| 455 "lib/frame_id_browsertest.cc", |
455 "lib/headless_browser_browsertest.cc", | 456 "lib/headless_browser_browsertest.cc", |
456 "lib/headless_browser_context_browsertest.cc", | 457 "lib/headless_browser_context_browsertest.cc", |
457 "lib/headless_devtools_client_browsertest.cc", | 458 "lib/headless_devtools_client_browsertest.cc", |
458 "lib/headless_web_contents_browsertest.cc", | 459 "lib/headless_web_contents_browsertest.cc", |
459 "public/util/dom_tree_extractor_browsertest.cc", | 460 "public/util/dom_tree_extractor_browsertest.cc", |
460 "public/util/flat_dom_tree_extractor_browsertest.cc", | 461 "public/util/flat_dom_tree_extractor_browsertest.cc", |
461 "test/headless_browser_test.cc", | 462 "test/headless_browser_test.cc", |
462 "test/headless_browser_test.h", | 463 "test/headless_browser_test.h", |
463 "test/headless_test_launcher.cc", | 464 "test/headless_test_launcher.cc", |
464 "test/test_protocol_handler.cc", | 465 "test/test_protocol_handler.cc", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 | 545 |
545 executable("headless_example") { | 546 executable("headless_example") { |
546 sources = [ | 547 sources = [ |
547 "app/headless_example.cc", | 548 "app/headless_example.cc", |
548 ] | 549 ] |
549 | 550 |
550 deps = [ | 551 deps = [ |
551 "//headless:headless_shell_lib", | 552 "//headless:headless_shell_lib", |
552 ] | 553 ] |
553 } | 554 } |
OLD | NEW |