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 # TODO(rockot) bug 505926: Don't include chrome files from here. | 5 # TODO(rockot) bug 505926: Don't include chrome files from here. |
6 # See chrome_browser_tests_extensions_sources below | 6 # See chrome_browser_tests_extensions_sources below |
7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
8 import("//extensions/extensions.gni") | 8 import("//extensions/extensions.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 } | 208 } |
209 | 209 |
210 test("extensions_browsertests") { | 210 test("extensions_browsertests") { |
211 sources = | 211 sources = |
212 rebase_path(extensions_tests_gypi_values.extensions_browsertests_sources, | 212 rebase_path(extensions_tests_gypi_values.extensions_browsertests_sources, |
213 ".", | 213 ".", |
214 "//extensions") | 214 "//extensions") |
215 | 215 |
216 data = [ | 216 data = [ |
217 "test/data/", | 217 "test/data/", |
218 "//net/data/", | |
219 "//net/tools/testserver/", | 218 "//net/tools/testserver/", |
220 "//third_party/pyftpdlib/", | 219 "//third_party/pyftpdlib/", |
221 "//third_party/pywebsocket/", | 220 "//third_party/pywebsocket/", |
222 "//third_party/tlslite/", | 221 "//third_party/tlslite/", |
223 "$root_out_dir/extensions_shell_and_test.pak", | 222 "$root_out_dir/extensions_shell_and_test.pak", |
224 ] | 223 ] |
225 | 224 |
226 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 225 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
227 | 226 |
228 deps = [ | 227 deps = [ |
229 ":test_support", | 228 ":test_support", |
230 "shell:app_shell_lib", | 229 "shell:app_shell_lib", |
231 | 230 |
232 # TODO(yoz): find the right deps | 231 # TODO(yoz): find the right deps |
233 "//base", | 232 "//base", |
234 "//base/test:test_support", | 233 "//base/test:test_support", |
235 "//components/prefs:test_support", | 234 "//components/prefs:test_support", |
236 "//components/storage_monitor:test_support", | 235 "//components/storage_monitor:test_support", |
237 "//content/test:browsertest_base", | 236 "//content/test:browsertest_base", |
238 "//content/test:test_support", | 237 "//content/test:test_support", |
239 "//device/bluetooth:mocks", | 238 "//device/bluetooth:mocks", |
240 "//device/core:mocks", | 239 "//device/core:mocks", |
241 "//device/hid:mocks", | 240 "//device/hid:mocks", |
242 "//device/usb:test_support", | 241 "//device/usb:test_support", |
243 "//mojo/edk/js", | 242 "//mojo/edk/js", |
244 "//mojo/public/cpp/bindings", | 243 "//mojo/public/cpp/bindings", |
| 244 "//net:test_support", |
245 "//testing/gmock", | 245 "//testing/gmock", |
246 "//testing/gtest", | 246 "//testing/gtest", |
247 ] | 247 ] |
248 | 248 |
249 data_deps = [ | 249 data_deps = [ |
250 "//third_party/mesa:osmesa", | 250 "//third_party/mesa:osmesa", |
251 ] | 251 ] |
252 | 252 |
253 if (is_mac) { | 253 if (is_mac) { |
254 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 254 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 "//testing/gtest", | 359 "//testing/gtest", |
360 "//third_party/hunspell", | 360 "//third_party/hunspell", |
361 "//third_party/icu", | 361 "//third_party/icu", |
362 "//third_party/libpng", | 362 "//third_party/libpng", |
363 "//third_party/zlib", | 363 "//third_party/zlib", |
364 "//ui/base:test_support", | 364 "//ui/base:test_support", |
365 "//ui/resources:ui_test_pak", | 365 "//ui/resources:ui_test_pak", |
366 "//ui/web_dialogs:test_support", | 366 "//ui/web_dialogs:test_support", |
367 ] | 367 ] |
368 } | 368 } |
OLD | NEW |