| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "public/headless_export.h", | 197 "public/headless_export.h", |
| 198 "public/headless_web_contents.h", | 198 "public/headless_web_contents.h", |
| 199 "public/internal/message_dispatcher.h", | 199 "public/internal/message_dispatcher.h", |
| 200 "public/internal/value_conversions.h", | 200 "public/internal/value_conversions.h", |
| 201 "public/util/black_hole_protocol_handler.cc", | 201 "public/util/black_hole_protocol_handler.cc", |
| 202 "public/util/black_hole_protocol_handler.h", | 202 "public/util/black_hole_protocol_handler.h", |
| 203 "public/util/deterministic_dispatcher.cc", | 203 "public/util/deterministic_dispatcher.cc", |
| 204 "public/util/deterministic_dispatcher.h", | 204 "public/util/deterministic_dispatcher.h", |
| 205 "public/util/deterministic_http_protocol_handler.cc", | 205 "public/util/deterministic_http_protocol_handler.cc", |
| 206 "public/util/deterministic_http_protocol_handler.h", | 206 "public/util/deterministic_http_protocol_handler.h", |
| 207 "public/util/dom_tree_extractor.cc", |
| 208 "public/util/dom_tree_extractor.h", |
| 207 "public/util/error_reporter.cc", | 209 "public/util/error_reporter.cc", |
| 208 "public/util/error_reporter.h", | 210 "public/util/error_reporter.h", |
| 209 "public/util/expedited_dispatcher.cc", | 211 "public/util/expedited_dispatcher.cc", |
| 210 "public/util/expedited_dispatcher.h", | 212 "public/util/expedited_dispatcher.h", |
| 211 "public/util/generic_url_request_job.cc", | 213 "public/util/generic_url_request_job.cc", |
| 212 "public/util/generic_url_request_job.h", | 214 "public/util/generic_url_request_job.h", |
| 213 "public/util/http_url_fetcher.cc", | 215 "public/util/http_url_fetcher.cc", |
| 214 "public/util/http_url_fetcher.h", | 216 "public/util/http_url_fetcher.h", |
| 215 "public/util/in_memory_protocol_handler.cc", | 217 "public/util/in_memory_protocol_handler.cc", |
| 216 "public/util/in_memory_protocol_handler.h", | 218 "public/util/in_memory_protocol_handler.h", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 ] | 314 ] |
| 313 } | 315 } |
| 314 | 316 |
| 315 test("headless_browsertests") { | 317 test("headless_browsertests") { |
| 316 sources = [ | 318 sources = [ |
| 317 "lib/embedder_mojo_browsertest.cc", | 319 "lib/embedder_mojo_browsertest.cc", |
| 318 "lib/headless_browser_browsertest.cc", | 320 "lib/headless_browser_browsertest.cc", |
| 319 "lib/headless_browser_context_browsertest.cc", | 321 "lib/headless_browser_context_browsertest.cc", |
| 320 "lib/headless_devtools_client_browsertest.cc", | 322 "lib/headless_devtools_client_browsertest.cc", |
| 321 "lib/headless_web_contents_browsertest.cc", | 323 "lib/headless_web_contents_browsertest.cc", |
| 324 "public/util/dom_tree_extractor_browsertest.cc", |
| 322 "test/headless_browser_test.cc", | 325 "test/headless_browser_test.cc", |
| 323 "test/headless_browser_test.h", | 326 "test/headless_browser_test.h", |
| 324 "test/headless_test_launcher.cc", | 327 "test/headless_test_launcher.cc", |
| 325 "test/test_protocol_handler.cc", | 328 "test/test_protocol_handler.cc", |
| 326 "test/test_protocol_handler.h", | 329 "test/test_protocol_handler.h", |
| 327 "test/test_url_request_job.cc", | 330 "test/test_url_request_job.cc", |
| 328 "test/test_url_request_job.h", | 331 "test/test_url_request_job.h", |
| 329 ] | 332 ] |
| 330 | 333 |
| 331 data = [ | 334 data = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 349 sources = [ | 352 sources = [ |
| 350 "app/headless_shell.cc", | 353 "app/headless_shell.cc", |
| 351 "app/headless_shell_switches.cc", | 354 "app/headless_shell_switches.cc", |
| 352 "app/headless_shell_switches.h", | 355 "app/headless_shell_switches.h", |
| 353 ] | 356 ] |
| 354 | 357 |
| 355 deps = [ | 358 deps = [ |
| 356 "//headless:headless_lib", | 359 "//headless:headless_lib", |
| 357 ] | 360 ] |
| 358 } | 361 } |
| OLD | NEW |