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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 | 434 |
435 test("headless_browsertests") { | 435 test("headless_browsertests") { |
436 sources = [ | 436 sources = [ |
437 "lib/embedder_mojo_browsertest.cc", | 437 "lib/embedder_mojo_browsertest.cc", |
438 "lib/headless_browser_browsertest.cc", | 438 "lib/headless_browser_browsertest.cc", |
439 "lib/headless_browser_context_browsertest.cc", | 439 "lib/headless_browser_context_browsertest.cc", |
440 "lib/headless_devtools_client_browsertest.cc", | 440 "lib/headless_devtools_client_browsertest.cc", |
441 "lib/headless_web_contents_browsertest.cc", | 441 "lib/headless_web_contents_browsertest.cc", |
442 "public/util/dom_tree_extractor_browsertest.cc", | 442 "public/util/dom_tree_extractor_browsertest.cc", |
443 "public/util/flat_dom_tree_extractor_browsertest.cc", | 443 "public/util/flat_dom_tree_extractor_browsertest.cc", |
| 444 "public/util/frame_id_browsertest.cc", |
444 "test/headless_browser_test.cc", | 445 "test/headless_browser_test.cc", |
445 "test/headless_browser_test.h", | 446 "test/headless_browser_test.h", |
446 "test/headless_test_launcher.cc", | 447 "test/headless_test_launcher.cc", |
447 "test/test_protocol_handler.cc", | 448 "test/test_protocol_handler.cc", |
448 "test/test_protocol_handler.h", | 449 "test/test_protocol_handler.h", |
449 "test/test_url_request_job.cc", | 450 "test/test_url_request_job.cc", |
450 "test/test_url_request_job.h", | 451 "test/test_url_request_job.h", |
451 ] | 452 ] |
452 | 453 |
453 data = [ | 454 data = [ |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 | 524 |
524 executable("headless_example") { | 525 executable("headless_example") { |
525 sources = [ | 526 sources = [ |
526 "app/headless_example.cc", | 527 "app/headless_example.cc", |
527 ] | 528 ] |
528 | 529 |
529 deps = [ | 530 deps = [ |
530 "//headless:headless_shell_lib", | 531 "//headless:headless_shell_lib", |
531 ] | 532 ] |
532 } | 533 } |
OLD | NEW |