| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "lib/browser/headless_content_browser_client.cc", | 162 "lib/browser/headless_content_browser_client.cc", |
| 163 "lib/browser/headless_content_browser_client.h", | 163 "lib/browser/headless_content_browser_client.h", |
| 164 "lib/browser/headless_devtools.cc", | 164 "lib/browser/headless_devtools.cc", |
| 165 "lib/browser/headless_devtools.h", | 165 "lib/browser/headless_devtools.h", |
| 166 "lib/browser/headless_devtools_client_impl.cc", | 166 "lib/browser/headless_devtools_client_impl.cc", |
| 167 "lib/browser/headless_devtools_client_impl.h", | 167 "lib/browser/headless_devtools_client_impl.h", |
| 168 "lib/browser/headless_devtools_manager_delegate.cc", | 168 "lib/browser/headless_devtools_manager_delegate.cc", |
| 169 "lib/browser/headless_devtools_manager_delegate.h", | 169 "lib/browser/headless_devtools_manager_delegate.h", |
| 170 "lib/browser/headless_platform_event_source.cc", | 170 "lib/browser/headless_platform_event_source.cc", |
| 171 "lib/browser/headless_platform_event_source.h", | 171 "lib/browser/headless_platform_event_source.h", |
| 172 "lib/browser/headless_screen.cc", | |
| 173 "lib/browser/headless_screen.h", | |
| 174 "lib/browser/headless_url_request_context_getter.cc", | 172 "lib/browser/headless_url_request_context_getter.cc", |
| 175 "lib/browser/headless_url_request_context_getter.h", | 173 "lib/browser/headless_url_request_context_getter.h", |
| 176 "lib/browser/headless_web_contents_impl.cc", | 174 "lib/browser/headless_web_contents_impl.cc", |
| 177 "lib/browser/headless_web_contents_impl.h", | 175 "lib/browser/headless_web_contents_impl.h", |
| 178 "lib/browser/headless_window_parenting_client.cc", | |
| 179 "lib/browser/headless_window_parenting_client.h", | |
| 180 "lib/browser/headless_window_tree_host.cc", | |
| 181 "lib/browser/headless_window_tree_host.h", | |
| 182 "lib/headless_content_client.cc", | 176 "lib/headless_content_client.cc", |
| 183 "lib/headless_content_client.h", | 177 "lib/headless_content_client.h", |
| 184 "lib/headless_content_main_delegate.cc", | 178 "lib/headless_content_main_delegate.cc", |
| 185 "lib/headless_content_main_delegate.h", | 179 "lib/headless_content_main_delegate.h", |
| 186 "public/headless_browser.cc", | 180 "public/headless_browser.cc", |
| 187 "public/headless_browser.h", | 181 "public/headless_browser.h", |
| 188 "public/headless_browser_context.h", | 182 "public/headless_browser_context.h", |
| 189 "public/headless_devtools_client.h", | 183 "public/headless_devtools_client.h", |
| 190 "public/headless_devtools_host.h", | 184 "public/headless_devtools_host.h", |
| 191 "public/headless_devtools_target.h", | 185 "public/headless_devtools_target.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 219 "public/util/managed_dispatch_url_request_job.h", | 213 "public/util/managed_dispatch_url_request_job.h", |
| 220 "public/util/testing/generic_url_request_mocks.cc", | 214 "public/util/testing/generic_url_request_mocks.cc", |
| 221 "public/util/testing/generic_url_request_mocks.h", | 215 "public/util/testing/generic_url_request_mocks.h", |
| 222 "public/util/url_fetcher.cc", | 216 "public/util/url_fetcher.cc", |
| 223 "public/util/url_fetcher.h", | 217 "public/util/url_fetcher.h", |
| 224 "public/util/url_request_dispatcher.h", | 218 "public/util/url_request_dispatcher.h", |
| 225 "public/util/user_agent.cc", | 219 "public/util/user_agent.cc", |
| 226 "public/util/user_agent.h", | 220 "public/util/user_agent.h", |
| 227 ] | 221 ] |
| 228 | 222 |
| 223 if (use_aura) { |
| 224 sources += [ |
| 225 "lib/browser/headless_browser_impl_aura.cc", |
| 226 "lib/browser/headless_screen.cc", |
| 227 "lib/browser/headless_screen.h", |
| 228 "lib/browser/headless_window_parenting_client.cc", |
| 229 "lib/browser/headless_window_parenting_client.h", |
| 230 "lib/browser/headless_window_tree_host.cc", |
| 231 "lib/browser/headless_window_tree_host.h", |
| 232 ] |
| 233 } |
| 234 |
| 229 deps = [ | 235 deps = [ |
| 230 ":gen_devtools_client_api", | 236 ":gen_devtools_client_api", |
| 231 ":pak", | 237 ":pak", |
| 232 "//base", | 238 "//base", |
| 233 "//components/security_state/content", | 239 "//components/security_state/content", |
| 234 "//components/security_state/core", | 240 "//components/security_state/core", |
| 235 "//content/public/app:both", | 241 "//content/public/app:both", |
| 236 "//content/public/browser", | 242 "//content/public/browser", |
| 237 "//content/public/common", | 243 "//content/public/common", |
| 238 "//content/public/common:service_names", | 244 "//content/public/common:service_names", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 | 378 |
| 373 executable("headless_shell") { | 379 executable("headless_shell") { |
| 374 sources = [ | 380 sources = [ |
| 375 "app/headless_shell_main.cc", | 381 "app/headless_shell_main.cc", |
| 376 ] | 382 ] |
| 377 | 383 |
| 378 deps = [ | 384 deps = [ |
| 379 "//headless:headless_shell_lib", | 385 "//headless:headless_shell_lib", |
| 380 ] | 386 ] |
| 381 } | 387 } |
| OLD | NEW |