| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "public/util/user_agent.h", | 218 "public/util/user_agent.h", |
| 219 "public/util/url_fetcher.cc", | 219 "public/util/url_fetcher.cc", |
| 220 "public/util/url_fetcher.h", | 220 "public/util/url_fetcher.h", |
| 221 "public/util/url_request_dispatcher.h", | 221 "public/util/url_request_dispatcher.h", |
| 222 ] | 222 ] |
| 223 | 223 |
| 224 deps = [ | 224 deps = [ |
| 225 ":gen_devtools_client_api", | 225 ":gen_devtools_client_api", |
| 226 ":pak", | 226 ":pak", |
| 227 "//base", | 227 "//base", |
| 228 "//components/devtools_http_handler", | |
| 229 "//content/public/app:both", | 228 "//content/public/app:both", |
| 230 "//content/public/browser", | 229 "//content/public/browser", |
| 231 "//content/public/child", | 230 "//content/public/child", |
| 232 "//content/public/common", | 231 "//content/public/common", |
| 233 "//content/public/renderer", | 232 "//content/public/renderer", |
| 234 "//content/public/utility", | 233 "//content/public/utility", |
| 235 "//net", | 234 "//net", |
| 236 "//services/shell/public/cpp", | 235 "//services/shell/public/cpp", |
| 237 "//third_party/mesa:osmesa", | 236 "//third_party/mesa:osmesa", |
| 238 "//ui/aura", | 237 "//ui/aura", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 sources = [ | 363 sources = [ |
| 365 "app/headless_shell.cc", | 364 "app/headless_shell.cc", |
| 366 "app/headless_shell_switches.cc", | 365 "app/headless_shell_switches.cc", |
| 367 "app/headless_shell_switches.h", | 366 "app/headless_shell_switches.h", |
| 368 ] | 367 ] |
| 369 | 368 |
| 370 deps = [ | 369 deps = [ |
| 371 "//headless:headless_lib", | 370 "//headless:headless_lib", |
| 372 ] | 371 ] |
| 373 } | 372 } |
| OLD | NEW |