| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//extensions/shell/app_shell.gni") | 7 import("//extensions/shell/app_shell.gni") |
| 8 | 8 |
| 9 # Technically, this directory should not depend on files from src/chrome, but | 9 # Technically, this directory should not depend on files from src/chrome, but |
| 10 # that's where the VERSION file is. This should probably all be moved to | 10 # that's where the VERSION file is. This should probably all be moved to |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 source_set("app_shell_lib") { | 26 source_set("app_shell_lib") { |
| 27 # TODO(jamescook): investigate and get rid of test dependencies. This library | 27 # TODO(jamescook): investigate and get rid of test dependencies. This library |
| 28 # is testonly because it depends on testonly libraries, namely | 28 # is testonly because it depends on testonly libraries, namely |
| 29 # //content/shell:content_shell_lib. See http://crbug.com/438283 | 29 # //content/shell:content_shell_lib. See http://crbug.com/438283 |
| 30 testonly = true | 30 testonly = true |
| 31 deps = [ | 31 deps = [ |
| 32 ":resources", | 32 ":resources", |
| 33 ":version_header", | 33 ":version_header", |
| 34 "//base", | 34 "//base", |
| 35 "//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", |
| 45 "//content/shell:content_shell_lib", | 44 "//content/shell:content_shell_lib", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "//extensions/browser", | 263 "//extensions/browser", |
| 265 ] | 264 ] |
| 266 | 265 |
| 267 if (is_chromeos) { | 266 if (is_chromeos) { |
| 268 deps += [ | 267 deps += [ |
| 269 "//chromeos:test_support", | 268 "//chromeos:test_support", |
| 270 "//components/keyed_service/content", | 269 "//components/keyed_service/content", |
| 271 ] | 270 ] |
| 272 } | 271 } |
| 273 } | 272 } |
| OLD | NEW |