| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 config("headless_implementation") { | 9 config("headless_implementation") { |
| 10 defines = [ "HEADLESS_IMPLEMENTATION" ] | 10 defines = [ "HEADLESS_IMPLEMENTATION" ] |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 ":pak", | 269 ":pak", |
| 270 "//base", | 270 "//base", |
| 271 "//components/devtools_http_handler", | 271 "//components/devtools_http_handler", |
| 272 "//content/public/app:both", | 272 "//content/public/app:both", |
| 273 "//content/public/browser", | 273 "//content/public/browser", |
| 274 "//content/public/child", | 274 "//content/public/child", |
| 275 "//content/public/common", | 275 "//content/public/common", |
| 276 "//content/public/renderer", | 276 "//content/public/renderer", |
| 277 "//content/public/utility", | 277 "//content/public/utility", |
| 278 "//net", | 278 "//net", |
| 279 "//third_party/mesa:osmesa", |
| 279 "//ui/aura", | 280 "//ui/aura", |
| 280 "//ui/base", | 281 "//ui/base", |
| 281 "//ui/compositor", | 282 "//ui/compositor", |
| 282 "//ui/display", | 283 "//ui/display", |
| 283 "//ui/ozone", | 284 "//ui/ozone", |
| 284 "//url", | 285 "//url", |
| 285 ] | 286 ] |
| 286 | 287 |
| 287 configs += [ ":headless_implementation" ] | 288 configs += [ ":headless_implementation" ] |
| 288 } | 289 } |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 sources = [ | 359 sources = [ |
| 359 "app/headless_shell.cc", | 360 "app/headless_shell.cc", |
| 360 "app/headless_shell_switches.cc", | 361 "app/headless_shell_switches.cc", |
| 361 "app/headless_shell_switches.h", | 362 "app/headless_shell_switches.h", |
| 362 ] | 363 ] |
| 363 | 364 |
| 364 deps = [ | 365 deps = [ |
| 365 "//headless:headless_lib", | 366 "//headless:headless_lib", |
| 366 ] | 367 ] |
| 367 } | 368 } |
| OLD | NEW |