| 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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 | 390 |
| 391 test("headless_browsertests") { | 391 test("headless_browsertests") { |
| 392 sources = [ | 392 sources = [ |
| 393 "lib/embedder_mojo_browsertest.cc", | 393 "lib/embedder_mojo_browsertest.cc", |
| 394 "lib/headless_browser_browsertest.cc", | 394 "lib/headless_browser_browsertest.cc", |
| 395 "lib/headless_browser_context_browsertest.cc", | 395 "lib/headless_browser_context_browsertest.cc", |
| 396 "lib/headless_devtools_client_browsertest.cc", | 396 "lib/headless_devtools_client_browsertest.cc", |
| 397 "lib/headless_web_contents_browsertest.cc", | 397 "lib/headless_web_contents_browsertest.cc", |
| 398 "public/util/dom_tree_extractor_browsertest.cc", | 398 "public/util/dom_tree_extractor_browsertest.cc", |
| 399 "public/util/flat_dom_tree_extractor_browsertest.cc", | 399 "public/util/flat_dom_tree_extractor_browsertest.cc", |
| 400 "public/util/protocol_handler_request_id_browsertest.cc", |
| 400 "test/headless_browser_test.cc", | 401 "test/headless_browser_test.cc", |
| 401 "test/headless_browser_test.h", | 402 "test/headless_browser_test.h", |
| 402 "test/headless_test_launcher.cc", | 403 "test/headless_test_launcher.cc", |
| 403 "test/test_protocol_handler.cc", | 404 "test/test_protocol_handler.cc", |
| 404 "test/test_protocol_handler.h", | 405 "test/test_protocol_handler.h", |
| 405 "test/test_url_request_job.cc", | 406 "test/test_url_request_job.cc", |
| 406 "test/test_url_request_job.h", | 407 "test/test_url_request_job.h", |
| 407 ] | 408 ] |
| 408 | 409 |
| 409 data = [ | 410 data = [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 472 |
| 472 executable("headless_example") { | 473 executable("headless_example") { |
| 473 sources = [ | 474 sources = [ |
| 474 "app/headless_example.cc", | 475 "app/headless_example.cc", |
| 475 ] | 476 ] |
| 476 | 477 |
| 477 deps = [ | 478 deps = [ |
| 478 "//headless:headless_shell_lib", | 479 "//headless:headless_shell_lib", |
| 479 ] | 480 ] |
| 480 } | 481 } |
| OLD | NEW |