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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 ":test_support", | 198 ":test_support", |
199 "shell:app_shell_lib", | 199 "shell:app_shell_lib", |
200 | 200 |
201 # TODO(yoz): find the right deps | 201 # TODO(yoz): find the right deps |
202 "//base", | 202 "//base", |
203 "//base:prefs_test_support", | 203 "//base:prefs_test_support", |
204 "//base/test:test_support", | 204 "//base/test:test_support", |
205 "//components/storage_monitor:test_support", | 205 "//components/storage_monitor:test_support", |
206 "//content/test:test_support", | 206 "//content/test:test_support", |
207 "//device/bluetooth:mocks", | 207 "//device/bluetooth:mocks", |
| 208 "//device/usb:mocks", |
208 "//mojo/environment:chromium", | 209 "//mojo/environment:chromium", |
209 "//testing/gmock", | 210 "//testing/gmock", |
210 "//testing/gtest", | 211 "//testing/gtest", |
211 "//third_party/mojo/src/mojo/edk/js", | 212 "//third_party/mojo/src/mojo/edk/js", |
212 "//third_party/mojo/src/mojo/edk/system", | 213 "//third_party/mojo/src/mojo/edk/system", |
213 "//third_party/mojo/src/mojo/public/cpp/bindings", | 214 "//third_party/mojo/src/mojo/public/cpp/bindings", |
214 ] | 215 ] |
215 | 216 |
216 if (is_win) { | 217 if (is_win) { |
217 deps += [ "//base/allocator" ] | 218 deps += [ "//base/allocator" ] |
218 } | 219 } |
219 | 220 |
220 if (is_mac) { | 221 if (is_mac) { |
221 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
222 } | 223 } |
223 } | 224 } |
OLD | NEW |