| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 group("headless") { | 9 group("headless") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "lib/browser/headless_devtools.cc", | 215 "lib/browser/headless_devtools.cc", |
| 216 "lib/browser/headless_devtools.h", | 216 "lib/browser/headless_devtools.h", |
| 217 "lib/browser/headless_devtools_client_impl.cc", | 217 "lib/browser/headless_devtools_client_impl.cc", |
| 218 "lib/browser/headless_devtools_client_impl.h", | 218 "lib/browser/headless_devtools_client_impl.h", |
| 219 "lib/browser/headless_screen.cc", | 219 "lib/browser/headless_screen.cc", |
| 220 "lib/browser/headless_screen.h", | 220 "lib/browser/headless_screen.h", |
| 221 "lib/browser/headless_url_request_context_getter.cc", | 221 "lib/browser/headless_url_request_context_getter.cc", |
| 222 "lib/browser/headless_url_request_context_getter.h", | 222 "lib/browser/headless_url_request_context_getter.h", |
| 223 "lib/browser/headless_web_contents_impl.cc", | 223 "lib/browser/headless_web_contents_impl.cc", |
| 224 "lib/browser/headless_web_contents_impl.h", | 224 "lib/browser/headless_web_contents_impl.h", |
| 225 "lib/browser/headless_window_tree_client.cc", |
| 226 "lib/browser/headless_window_tree_client.h", |
| 225 "lib/headless_content_client.cc", | 227 "lib/headless_content_client.cc", |
| 226 "lib/headless_content_client.h", | 228 "lib/headless_content_client.h", |
| 227 "lib/headless_content_main_delegate.cc", | 229 "lib/headless_content_main_delegate.cc", |
| 228 "lib/headless_content_main_delegate.h", | 230 "lib/headless_content_main_delegate.h", |
| 229 "lib/renderer/headless_content_renderer_client.cc", | 231 "lib/renderer/headless_content_renderer_client.cc", |
| 230 "lib/renderer/headless_content_renderer_client.h", | 232 "lib/renderer/headless_content_renderer_client.h", |
| 231 "lib/utility/headless_content_utility_client.cc", | 233 "lib/utility/headless_content_utility_client.cc", |
| 232 "lib/utility/headless_content_utility_client.h", | 234 "lib/utility/headless_content_utility_client.h", |
| 233 "public/headless_browser.cc", | 235 "public/headless_browser.cc", |
| 234 "public/headless_browser.h", | 236 "public/headless_browser.h", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 sources = [ | 334 sources = [ |
| 333 "app/headless_shell.cc", | 335 "app/headless_shell.cc", |
| 334 "app/headless_shell_switches.cc", | 336 "app/headless_shell_switches.cc", |
| 335 "app/headless_shell_switches.h", | 337 "app/headless_shell_switches.h", |
| 336 ] | 338 ] |
| 337 | 339 |
| 338 deps = [ | 340 deps = [ |
| 339 "//headless:headless_lib", | 341 "//headless:headless_lib", |
| 340 ] | 342 ] |
| 341 } | 343 } |
| OLD | NEW |