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/extensions.gni") | 5 import("//extensions/extensions.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 assert(enable_extensions) | 10 assert(enable_extensions) |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "shell/browser/shell_display_info_provider.cc", | 142 "shell/browser/shell_display_info_provider.cc", |
143 ] | 143 ] |
144 | 144 |
145 deps = [ | 145 deps = [ |
146 ":extensions_resources", | 146 ":extensions_resources", |
147 ":shell_and_test_pak", | 147 ":shell_and_test_pak", |
148 ":test_support", | 148 ":test_support", |
149 "//base", | 149 "//base", |
150 "//base:prefs_test_support", | 150 "//base:prefs_test_support", |
151 "//base/test:test_support", | 151 "//base/test:test_support", |
| 152 "//components/guest_view:test_support", |
152 "//components/keyed_service/content", | 153 "//components/keyed_service/content", |
153 "//components/user_prefs", | 154 "//components/user_prefs", |
154 "//content/test:test_support", | 155 "//content/test:test_support", |
155 "//device/bluetooth:mocks", | 156 "//device/bluetooth:mocks", |
156 "//device/serial", | 157 "//device/serial", |
157 "//device/serial:test_support", | 158 "//device/serial:test_support", |
158 "//extensions/common", | 159 "//extensions/common", |
159 "//extensions/common/api/cast_channel:cast_channel_proto", | 160 "//extensions/common/api/cast_channel:cast_channel_proto", |
160 "//extensions/renderer", | 161 "//extensions/renderer", |
161 "//extensions/strings", | 162 "//extensions/strings", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 195 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
195 | 196 |
196 deps = [ | 197 deps = [ |
197 ":test_support", | 198 ":test_support", |
198 "shell:app_shell_lib", | 199 "shell:app_shell_lib", |
199 | 200 |
200 # TODO(yoz): find the right deps | 201 # TODO(yoz): find the right deps |
201 "//base", | 202 "//base", |
202 "//base:prefs_test_support", | 203 "//base:prefs_test_support", |
203 "//base/test:test_support", | 204 "//base/test:test_support", |
| 205 "//components/guest_view:test_support", |
204 "//components/storage_monitor:test_support", | 206 "//components/storage_monitor:test_support", |
205 "//content/test:test_support", | 207 "//content/test:test_support", |
206 "//device/bluetooth:mocks", | 208 "//device/bluetooth:mocks", |
207 "//mojo/environment:chromium", | 209 "//mojo/environment:chromium", |
208 "//testing/gmock", | 210 "//testing/gmock", |
209 "//testing/gtest", | 211 "//testing/gtest", |
210 "//third_party/mojo/src/mojo/edk/js", | 212 "//third_party/mojo/src/mojo/edk/js", |
211 "//third_party/mojo/src/mojo/edk/system", | 213 "//third_party/mojo/src/mojo/edk/system", |
212 "//third_party/mojo/src/mojo/public/cpp/bindings", | 214 "//third_party/mojo/src/mojo/public/cpp/bindings", |
213 ] | 215 ] |
214 | 216 |
215 if (is_win) { | 217 if (is_win) { |
216 deps += [ "//base/allocator" ] | 218 deps += [ "//base/allocator" ] |
217 } | 219 } |
218 | 220 |
219 if (is_mac) { | 221 if (is_mac) { |
220 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
221 } | 223 } |
222 } | 224 } |
OLD | NEW |