| 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 26 matching lines...) Expand all Loading... |
| 37 "//components/guest_view/common", | 37 "//components/guest_view/common", |
| 38 "//components/guest_view/renderer", | 38 "//components/guest_view/renderer", |
| 39 "//components/pref_registry", | 39 "//components/pref_registry", |
| 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", |
| 48 "//extensions:shell_and_test_pak", |
| 49 "//extensions/browser", |
| 50 "//extensions/common", |
| 47 "//extensions/common/api", | 51 "//extensions/common/api", |
| 48 "//extensions/common/api:api_registration", | 52 "//extensions/common/api:api_registration", |
| 49 "//extensions/browser", | |
| 50 "//extensions/common", | |
| 51 "//extensions/renderer", | 53 "//extensions/renderer", |
| 52 "//extensions/shell/common/api", | 54 "//extensions/shell/common/api", |
| 53 "//extensions/shell/common/api:api_registration", | 55 "//extensions/shell/common/api:api_registration", |
| 54 "//extensions/utility", | 56 "//extensions/utility", |
| 55 "//extensions:extensions_resources", | |
| 56 "//extensions:shell_and_test_pak", | |
| 57 "//mojo/environment:chromium", | 57 "//mojo/environment:chromium", |
| 58 "//skia", | 58 "//skia", |
| 59 "//third_party/WebKit/public:blink", | 59 "//third_party/WebKit/public:blink", |
| 60 "//third_party/mojo/src/mojo/edk/system", | 60 "//third_party/mojo/src/mojo/edk/system", |
| 61 "//ui/base", | 61 "//ui/base", |
| 62 "//ui/base/ime", | 62 "//ui/base/ime", |
| 63 "//v8", | 63 "//v8", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources, | 66 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources, |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 testonly = true | 252 testonly = true |
| 253 sources = [ | 253 sources = [ |
| 254 "app/shell_main_mac.cc", | 254 "app/shell_main_mac.cc", |
| 255 "app/shell_main_mac.h", | 255 "app/shell_main_mac.h", |
| 256 ] | 256 ] |
| 257 deps = [ | 257 deps = [ |
| 258 ":app_shell_lib", | 258 ":app_shell_lib", |
| 259 ] | 259 ] |
| 260 } | 260 } |
| 261 } | 261 } |
| OLD | NEW |