| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 config("headless_implementation") { | 10 config("headless_implementation") { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 ":gen_devtools_client_api", | 231 ":gen_devtools_client_api", |
| 232 ":pak", | 232 ":pak", |
| 233 "//base", | 233 "//base", |
| 234 "//content/public/app:both", | 234 "//content/public/app:both", |
| 235 "//content/public/browser", | 235 "//content/public/browser", |
| 236 "//content/public/child", | 236 "//content/public/child", |
| 237 "//content/public/common", | 237 "//content/public/common", |
| 238 "//content/public/renderer", | 238 "//content/public/renderer", |
| 239 "//content/public/utility", | 239 "//content/public/utility", |
| 240 "//net", | 240 "//net", |
| 241 "//services/shell/public/cpp", | 241 "//services/service_manager/public/cpp", |
| 242 "//third_party/mesa:osmesa", | 242 "//third_party/mesa:osmesa", |
| 243 "//ui/aura", | 243 "//ui/aura", |
| 244 "//ui/base", | 244 "//ui/base", |
| 245 "//ui/compositor", | 245 "//ui/compositor", |
| 246 "//ui/display", | 246 "//ui/display", |
| 247 "//ui/ozone", | 247 "//ui/ozone", |
| 248 "//url", | 248 "//url", |
| 249 ] | 249 ] |
| 250 | 250 |
| 251 configs += [ ":headless_implementation" ] | 251 configs += [ ":headless_implementation" ] |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 sources = [ | 349 sources = [ |
| 350 "app/headless_shell.cc", | 350 "app/headless_shell.cc", |
| 351 "app/headless_shell_switches.cc", | 351 "app/headless_shell_switches.cc", |
| 352 "app/headless_shell_switches.h", | 352 "app/headless_shell_switches.h", |
| 353 ] | 353 ] |
| 354 | 354 |
| 355 deps = [ | 355 deps = [ |
| 356 "//headless:headless_lib", | 356 "//headless:headless_lib", |
| 357 ] | 357 ] |
| 358 } | 358 } |
| OLD | NEW |