OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//extensions/shell/app_shell.gni") | 6 import("//extensions/shell/app_shell.gni") |
7 | 7 |
8 # Technically, this directory should not depend on files from src/chrome, but | 8 # Technically, this directory should not depend on files from src/chrome, but |
9 # that's where the VERSION file is. This should probably all be moved to | 9 # that's where the VERSION file is. This should probably all be moved to |
10 # src/build. | 10 # src/build. |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 source_set("app_shell_lib") { | 25 source_set("app_shell_lib") { |
26 # TODO(jamescook): investigate and get rid of test dependencies. This library | 26 # TODO(jamescook): investigate and get rid of test dependencies. This library |
27 # is testonly because it depends on testonly libraries, namely | 27 # is testonly because it depends on testonly libraries, namely |
28 # //content/shell:content_shell_lib. See http://crbug.com/438283 | 28 # //content/shell:content_shell_lib. See http://crbug.com/438283 |
29 testonly = true | 29 testonly = true |
30 deps = [ | 30 deps = [ |
31 ":resources", | 31 ":resources", |
32 ":version_header", | 32 ":version_header", |
33 "//base", | 33 "//base", |
34 "//components/devtools_discovery", | |
35 "//components/devtools_http_handler", | 34 "//components/devtools_http_handler", |
36 "//components/guest_view/browser", | 35 "//components/guest_view/browser", |
37 "//components/guest_view/common", | 36 "//components/guest_view/common", |
38 "//components/guest_view/renderer", | 37 "//components/guest_view/renderer", |
39 "//components/pref_registry", | 38 "//components/pref_registry", |
40 "//components/prefs", | 39 "//components/prefs", |
41 "//components/update_client", | 40 "//components/update_client", |
42 "//components/user_prefs", | 41 "//components/user_prefs", |
43 "//components/web_cache/renderer", | 42 "//components/web_cache/renderer", |
44 "//content", | 43 "//content", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 testonly = true | 211 testonly = true |
213 sources = [ | 212 sources = [ |
214 "app/shell_main_mac.cc", | 213 "app/shell_main_mac.cc", |
215 "app/shell_main_mac.h", | 214 "app/shell_main_mac.h", |
216 ] | 215 ] |
217 deps = [ | 216 deps = [ |
218 ":app_shell_lib", | 217 ":app_shell_lib", |
219 ] | 218 ] |
220 } | 219 } |
221 } | 220 } |
OLD | NEW |