| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_screen.cc", | 170 "lib/browser/headless_screen.cc", |
| 171 "lib/browser/headless_screen.h", | 171 "lib/browser/headless_screen.h", |
| 172 "lib/browser/headless_url_request_context_getter.cc", | 172 "lib/browser/headless_url_request_context_getter.cc", |
| 173 "lib/browser/headless_url_request_context_getter.h", | 173 "lib/browser/headless_url_request_context_getter.h", |
| 174 "lib/browser/headless_web_contents_impl.cc", | 174 "lib/browser/headless_web_contents_impl.cc", |
| 175 "lib/browser/headless_web_contents_impl.h", | 175 "lib/browser/headless_web_contents_impl.h", |
| 176 "lib/browser/headless_window_parenting_client.cc", | 176 "lib/browser/headless_window_parenting_client.cc", |
| 177 "lib/browser/headless_window_parenting_client.h", | 177 "lib/browser/headless_window_parenting_client.h", |
| 178 "lib/browser/headless_window_tree_host.cc", |
| 179 "lib/browser/headless_window_tree_host.h", |
| 178 "lib/headless_content_client.cc", | 180 "lib/headless_content_client.cc", |
| 179 "lib/headless_content_client.h", | 181 "lib/headless_content_client.h", |
| 180 "lib/headless_content_main_delegate.cc", | 182 "lib/headless_content_main_delegate.cc", |
| 181 "lib/headless_content_main_delegate.h", | 183 "lib/headless_content_main_delegate.h", |
| 182 "lib/renderer/headless_content_renderer_client.cc", | 184 "lib/renderer/headless_content_renderer_client.cc", |
| 183 "lib/renderer/headless_content_renderer_client.h", | 185 "lib/renderer/headless_content_renderer_client.h", |
| 184 "lib/utility/headless_content_utility_client.cc", | 186 "lib/utility/headless_content_utility_client.cc", |
| 185 "lib/utility/headless_content_utility_client.h", | 187 "lib/utility/headless_content_utility_client.h", |
| 186 "public/headless_browser.cc", | 188 "public/headless_browser.cc", |
| 187 "public/headless_browser.h", | 189 "public/headless_browser.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "//content/public/common:service_names", | 239 "//content/public/common:service_names", |
| 238 "//content/public/renderer", | 240 "//content/public/renderer", |
| 239 "//content/public/utility", | 241 "//content/public/utility", |
| 240 "//net", | 242 "//net", |
| 241 "//services/service_manager/public/cpp", | 243 "//services/service_manager/public/cpp", |
| 242 "//third_party/mesa:osmesa", | 244 "//third_party/mesa:osmesa", |
| 243 "//ui/aura", | 245 "//ui/aura", |
| 244 "//ui/base", | 246 "//ui/base", |
| 245 "//ui/compositor", | 247 "//ui/compositor", |
| 246 "//ui/display", | 248 "//ui/display", |
| 247 "//ui/ozone", | 249 "//ui/events/devices", |
| 248 "//url", | 250 "//url", |
| 249 ] | 251 ] |
| 250 | 252 |
| 253 if (use_ozone) { |
| 254 deps += [ "//ui/ozone" ] |
| 255 } |
| 256 |
| 251 configs += [ ":headless_implementation" ] | 257 configs += [ ":headless_implementation" ] |
| 252 } | 258 } |
| 253 | 259 |
| 254 group("headless_tests") { | 260 group("headless_tests") { |
| 255 testonly = true | 261 testonly = true |
| 256 | 262 |
| 257 deps = [ | 263 deps = [ |
| 258 ":headless_browsertests", | 264 ":headless_browsertests", |
| 259 ":headless_unittests", | 265 ":headless_unittests", |
| 260 ] | 266 ] |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 | 367 |
| 362 executable("headless_shell") { | 368 executable("headless_shell") { |
| 363 sources = [ | 369 sources = [ |
| 364 "app/headless_shell_main.cc", | 370 "app/headless_shell_main.cc", |
| 365 ] | 371 ] |
| 366 | 372 |
| 367 deps = [ | 373 deps = [ |
| 368 "//headless:headless_shell_lib", | 374 "//headless:headless_shell_lib", |
| 369 ] | 375 ] |
| 370 } | 376 } |
| OLD | NEW |