| 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("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 294 |
| 295 if (enable_basic_printing) { | 295 if (enable_basic_printing) { |
| 296 sources += [ | 296 sources += [ |
| 297 "lib/browser/headless_print_manager.cc", | 297 "lib/browser/headless_print_manager.cc", |
| 298 "lib/browser/headless_print_manager.h", | 298 "lib/browser/headless_print_manager.h", |
| 299 "lib/renderer/headless_print_web_view_helper_delegate.cc", | 299 "lib/renderer/headless_print_web_view_helper_delegate.cc", |
| 300 "lib/renderer/headless_print_web_view_helper_delegate.h", | 300 "lib/renderer/headless_print_web_view_helper_delegate.h", |
| 301 ] | 301 ] |
| 302 } | 302 } |
| 303 | 303 |
| 304 public_deps = [ |
| 305 "//base", |
| 306 "//net", |
| 307 ] |
| 308 |
| 304 deps = [ | 309 deps = [ |
| 305 ":gen_devtools_client_api", | 310 ":gen_devtools_client_api", |
| 306 ":version_header", | 311 ":version_header", |
| 307 "//base", | |
| 308 "//components/crash/content/browser", | 312 "//components/crash/content/browser", |
| 309 "//components/security_state/content", | 313 "//components/security_state/content", |
| 310 "//components/security_state/core", | 314 "//components/security_state/core", |
| 311 "//content/public/app:both", | 315 "//content/public/app:both", |
| 312 "//content/public/browser", | 316 "//content/public/browser", |
| 313 "//content/public/child:child", | 317 "//content/public/child:child", |
| 314 "//content/public/common", | 318 "//content/public/common", |
| 315 "//content/public/common:service_names", | 319 "//content/public/common:service_names", |
| 316 "//net", | |
| 317 "//services/service_manager/public/cpp", | 320 "//services/service_manager/public/cpp", |
| 318 "//third_party/mesa:osmesa", | 321 "//third_party/mesa:osmesa", |
| 319 "//ui/base", | 322 "//ui/base", |
| 320 "//ui/compositor", | 323 "//ui/compositor", |
| 321 "//ui/display", | 324 "//ui/display", |
| 322 "//ui/events/devices", | 325 "//ui/events/devices", |
| 323 "//url", | 326 "//url", |
| 324 ] | 327 ] |
| 325 | 328 |
| 326 if (!is_mac) { | 329 if (!is_mac) { |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 | 508 |
| 506 executable("headless_example") { | 509 executable("headless_example") { |
| 507 sources = [ | 510 sources = [ |
| 508 "app/headless_example.cc", | 511 "app/headless_example.cc", |
| 509 ] | 512 ] |
| 510 | 513 |
| 511 deps = [ | 514 deps = [ |
| 512 "//headless:headless_shell_lib", | 515 "//headless:headless_shell_lib", |
| 513 ] | 516 ] |
| 514 } | 517 } |
| OLD | NEW |