| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "lib/browser/headless_browser_main_parts.h", | 201 "lib/browser/headless_browser_main_parts.h", |
| 202 "lib/browser/headless_content_browser_client.cc", | 202 "lib/browser/headless_content_browser_client.cc", |
| 203 "lib/browser/headless_content_browser_client.h", | 203 "lib/browser/headless_content_browser_client.h", |
| 204 "lib/browser/headless_devtools.cc", | 204 "lib/browser/headless_devtools.cc", |
| 205 "lib/browser/headless_devtools.h", | 205 "lib/browser/headless_devtools.h", |
| 206 "lib/browser/headless_devtools_client_impl.cc", | 206 "lib/browser/headless_devtools_client_impl.cc", |
| 207 "lib/browser/headless_devtools_client_impl.h", | 207 "lib/browser/headless_devtools_client_impl.h", |
| 208 "lib/browser/headless_devtools_manager_delegate.cc", | 208 "lib/browser/headless_devtools_manager_delegate.cc", |
| 209 "lib/browser/headless_devtools_manager_delegate.h", | 209 "lib/browser/headless_devtools_manager_delegate.h", |
| 210 "lib/browser/headless_macros.h", | 210 "lib/browser/headless_macros.h", |
| 211 "lib/browser/headless_network_delegate.cc", |
| 212 "lib/browser/headless_network_delegate.h", |
| 211 "lib/browser/headless_platform_event_source.cc", | 213 "lib/browser/headless_platform_event_source.cc", |
| 212 "lib/browser/headless_platform_event_source.h", | 214 "lib/browser/headless_platform_event_source.h", |
| 213 "lib/browser/headless_url_request_context_getter.cc", | 215 "lib/browser/headless_url_request_context_getter.cc", |
| 214 "lib/browser/headless_url_request_context_getter.h", | 216 "lib/browser/headless_url_request_context_getter.h", |
| 215 "lib/browser/headless_web_contents_impl.cc", | 217 "lib/browser/headless_web_contents_impl.cc", |
| 216 "lib/browser/headless_web_contents_impl.h", | 218 "lib/browser/headless_web_contents_impl.h", |
| 217 "lib/headless_crash_reporter_client.cc", | 219 "lib/headless_crash_reporter_client.cc", |
| 218 "lib/headless_crash_reporter_client.h", | 220 "lib/headless_crash_reporter_client.h", |
| 219 "lib/headless_content_client.cc", | 221 "lib/headless_content_client.cc", |
| 220 "lib/headless_content_client.h", | 222 "lib/headless_content_client.h", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 | 477 |
| 476 executable("headless_example") { | 478 executable("headless_example") { |
| 477 sources = [ | 479 sources = [ |
| 478 "app/headless_example.cc", | 480 "app/headless_example.cc", |
| 479 ] | 481 ] |
| 480 | 482 |
| 481 deps = [ | 483 deps = [ |
| 482 "//headless:headless_shell_lib", | 484 "//headless:headless_shell_lib", |
| 483 ] | 485 ] |
| 484 } | 486 } |
| OLD | NEW |