| 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("//extensions/shell/app_shell.gni") | 5 import("//extensions/shell/app_shell.gni") |
| 6 | 6 |
| 7 # Technically, this directory should not depend on files from src/chrome, but | 7 # Technically, this directory should not depend on files from src/chrome, but |
| 8 # that's where the VERSION file is. This should probably all be moved to | 8 # that's where the VERSION file is. This should probably all be moved to |
| 9 # src/build. | 9 # src/build. |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 source_set("app_shell_lib") { | 24 source_set("app_shell_lib") { |
| 25 # TODO(jamescook): investigate and get rid of test dependencies. This library | 25 # TODO(jamescook): investigate and get rid of test dependencies. This library |
| 26 # is testonly because it depends on testonly libraries, namely | 26 # is testonly because it depends on testonly libraries, namely |
| 27 # //content/shell:content_shell_lib. See http://crbug.com/438283 | 27 # //content/shell:content_shell_lib. See http://crbug.com/438283 |
| 28 testonly = true | 28 testonly = true |
| 29 deps = [ | 29 deps = [ |
| 30 ":resources", | 30 ":resources", |
| 31 ":version_header", | 31 ":version_header", |
| 32 "//base", | 32 "//base", |
| 33 "//base:prefs", | |
| 34 "//components/devtools_discovery", | 33 "//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", |
| 39 "//components/prefs", |
| 40 "//components/update_client", | 40 "//components/update_client", |
| 41 "//components/user_prefs", | 41 "//components/user_prefs", |
| 42 "//components/web_cache/renderer", | 42 "//components/web_cache/renderer", |
| 43 "//content", | 43 "//content", |
| 44 "//content/shell:content_shell_lib", | 44 "//content/shell:content_shell_lib", |
| 45 "//device/core", | 45 "//device/core", |
| 46 "//device/hid", | 46 "//device/hid", |
| 47 "//extensions:extensions_resources", | 47 "//extensions:extensions_resources", |
| 48 "//extensions:shell_and_test_pak", | 48 "//extensions:shell_and_test_pak", |
| 49 "//extensions/browser", | 49 "//extensions/browser", |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 testonly = true | 227 testonly = true |
| 228 sources = [ | 228 sources = [ |
| 229 "app/shell_main_mac.cc", | 229 "app/shell_main_mac.cc", |
| 230 "app/shell_main_mac.h", | 230 "app/shell_main_mac.h", |
| 231 ] | 231 ] |
| 232 deps = [ | 232 deps = [ |
| 233 ":app_shell_lib", | 233 ":app_shell_lib", |
| 234 ] | 234 ] |
| 235 } | 235 } |
| 236 } | 236 } |
| OLD | NEW |