| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 278 |
| 279 deps = [ | 279 deps = [ |
| 280 ":gen_devtools_client_api", | 280 ":gen_devtools_client_api", |
| 281 ":version_header", | 281 ":version_header", |
| 282 "//base", | 282 "//base", |
| 283 "//components/crash/content/browser", | 283 "//components/crash/content/browser", |
| 284 "//components/security_state/content", | 284 "//components/security_state/content", |
| 285 "//components/security_state/core", | 285 "//components/security_state/core", |
| 286 "//content/public/app:both", | 286 "//content/public/app:both", |
| 287 "//content/public/browser", | 287 "//content/public/browser", |
| 288 "//content/public/child:child", |
| 288 "//content/public/common", | 289 "//content/public/common", |
| 289 "//content/public/common:service_names", | 290 "//content/public/common:service_names", |
| 290 "//net", | 291 "//net", |
| 291 "//services/service_manager/public/cpp", | 292 "//services/service_manager/public/cpp", |
| 292 "//third_party/mesa:osmesa", | 293 "//third_party/mesa:osmesa", |
| 293 "//ui/base", | 294 "//ui/base", |
| 294 "//ui/compositor", | 295 "//ui/compositor", |
| 295 "//ui/display", | 296 "//ui/display", |
| 296 "//ui/events/devices", | 297 "//ui/events/devices", |
| 297 "//url", | 298 "//url", |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 472 |
| 472 executable("headless_example") { | 473 executable("headless_example") { |
| 473 sources = [ | 474 sources = [ |
| 474 "app/headless_example.cc", | 475 "app/headless_example.cc", |
| 475 ] | 476 ] |
| 476 | 477 |
| 477 deps = [ | 478 deps = [ |
| 478 "//headless:headless_shell_lib", | 479 "//headless:headless_shell_lib", |
| 479 ] | 480 ] |
| 480 } | 481 } |
| OLD | NEW |