| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 50 "//extensions/common", | 50 "//extensions/common", |
| 51 "//extensions/common/api", | 51 "//extensions/common/api", |
| 52 "//extensions/common/api:api_registration", | 52 "//extensions/common/api:api_registration", |
| 53 "//extensions/renderer", | 53 "//extensions/renderer", |
| 54 "//extensions/shell/common/api", | 54 "//extensions/shell/common/api", |
| 55 "//extensions/shell/common/api:api_registration", | 55 "//extensions/shell/common/api:api_registration", |
| 56 "//extensions/utility", | 56 "//extensions/utility", |
| 57 "//mojo/edk/system", | |
| 58 "//skia", | 57 "//skia", |
| 59 "//third_party/WebKit/public:blink", | 58 "//third_party/WebKit/public:blink", |
| 60 "//third_party/cld_2", | 59 "//third_party/cld_2", |
| 61 "//ui/base", | 60 "//ui/base", |
| 62 "//ui/base/ime", | 61 "//ui/base/ime", |
| 63 "//v8", | 62 "//v8", |
| 64 ] | 63 ] |
| 65 | 64 |
| 66 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources, | 65 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources, |
| 67 ".", | 66 ".", |
| (...skipping 144 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 |