| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 ] | 332 ] |
| 331 } | 333 } |
| 332 | 334 |
| 333 test("headless_browsertests") { | 335 test("headless_browsertests") { |
| 334 sources = [ | 336 sources = [ |
| 335 "lib/embedder_mojo_browsertest.cc", | 337 "lib/embedder_mojo_browsertest.cc", |
| 336 "lib/headless_browser_browsertest.cc", | 338 "lib/headless_browser_browsertest.cc", |
| 337 "lib/headless_browser_context_browsertest.cc", | 339 "lib/headless_browser_context_browsertest.cc", |
| 338 "lib/headless_devtools_client_browsertest.cc", | 340 "lib/headless_devtools_client_browsertest.cc", |
| 339 "lib/headless_web_contents_browsertest.cc", | 341 "lib/headless_web_contents_browsertest.cc", |
| 342 "public/util/dom_tree_extractor_browsertest.cc", |
| 340 "test/headless_browser_test.cc", | 343 "test/headless_browser_test.cc", |
| 341 "test/headless_browser_test.h", | 344 "test/headless_browser_test.h", |
| 342 "test/headless_test_launcher.cc", | 345 "test/headless_test_launcher.cc", |
| 343 "test/test_protocol_handler.cc", | 346 "test/test_protocol_handler.cc", |
| 344 "test/test_protocol_handler.h", | 347 "test/test_protocol_handler.h", |
| 345 "test/test_url_request_job.cc", | 348 "test/test_url_request_job.cc", |
| 346 "test/test_url_request_job.h", | 349 "test/test_url_request_job.h", |
| 347 ] | 350 ] |
| 348 | 351 |
| 349 data = [ | 352 data = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 367 sources = [ | 370 sources = [ |
| 368 "app/headless_shell.cc", | 371 "app/headless_shell.cc", |
| 369 "app/headless_shell_switches.cc", | 372 "app/headless_shell_switches.cc", |
| 370 "app/headless_shell_switches.h", | 373 "app/headless_shell_switches.h", |
| 371 ] | 374 ] |
| 372 | 375 |
| 373 deps = [ | 376 deps = [ |
| 374 "//headless:headless_lib", | 377 "//headless:headless_lib", |
| 375 ] | 378 ] |
| 376 } | 379 } |
| OLD | NEW |