| 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 group("headless") { | 9 group("headless") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "public/headless_browser.cc", | 83 "public/headless_browser.cc", |
| 84 "public/headless_browser.h", | 84 "public/headless_browser.h", |
| 85 "public/headless_export.h", | 85 "public/headless_export.h", |
| 86 "public/headless_web_contents.h", | 86 "public/headless_web_contents.h", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 deps = [ | 89 deps = [ |
| 90 ":pak", | 90 ":pak", |
| 91 "//base", | 91 "//base", |
| 92 "//components/devtools_http_handler", | 92 "//components/devtools_http_handler", |
| 93 "//content/public/app:both", |
| 93 "//content/public/browser", | 94 "//content/public/browser", |
| 95 "//content/public/child", |
| 94 "//content/public/common", | 96 "//content/public/common", |
| 95 "//content/public/renderer", | 97 "//content/public/renderer", |
| 96 "//content/public/utility", | 98 "//content/public/utility", |
| 97 "//net", | 99 "//net", |
| 98 "//ui/aura", | 100 "//ui/aura", |
| 99 "//ui/base", | 101 "//ui/base", |
| 100 "//ui/compositor", | 102 "//ui/compositor", |
| 101 "//ui/ozone", | 103 "//ui/ozone", |
| 102 "//url", | 104 "//url", |
| 103 ] | 105 ] |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 sources = [ | 140 sources = [ |
| 139 "app/headless_shell.cc", | 141 "app/headless_shell.cc", |
| 140 "app/headless_shell_switches.cc", | 142 "app/headless_shell_switches.cc", |
| 141 "app/headless_shell_switches.h", | 143 "app/headless_shell_switches.h", |
| 142 ] | 144 ] |
| 143 | 145 |
| 144 deps = [ | 146 deps = [ |
| 145 "//headless:headless_lib", | 147 "//headless:headless_lib", |
| 146 ] | 148 ] |
| 147 } | 149 } |
| OLD | NEW |