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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 | 8 |
9 assert(enable_extensions) | 9 assert(enable_extensions) |
10 | 10 |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "//third_party/mojo/src/mojo/edk/js", | 282 "//third_party/mojo/src/mojo/edk/js", |
283 "//third_party/mojo/src/mojo/edk/system", | 283 "//third_party/mojo/src/mojo/edk/system", |
284 "//third_party/mojo/src/mojo/public/cpp/bindings", | 284 "//third_party/mojo/src/mojo/public/cpp/bindings", |
285 ] | 285 ] |
286 | 286 |
287 if (is_win) { | 287 if (is_win) { |
288 deps += [ "//base/allocator" ] | 288 deps += [ "//base/allocator" ] |
289 } | 289 } |
290 } | 290 } |
291 } | 291 } |
| 292 |
| 293 test("extensions_browsertests") { |
| 294 sources = [ |
| 295 "browser/api/audio/audio_apitest.cc", |
| 296 "browser/api/dns/dns_apitest.cc", |
| 297 "browser/api/hid/hid_apitest.cc", |
| 298 "browser/api/socket/socket_apitest.cc", |
| 299 "browser/api/sockets_tcp/sockets_tcp_apitest.cc", |
| 300 "browser/api/sockets_udp/sockets_udp_apitest.cc", |
| 301 "browser/api/system_cpu/system_cpu_apitest.cc", |
| 302 "browser/api/system_display/system_display_apitest.cc", |
| 303 "browser/api/system_memory/system_memory_apitest.cc", |
| 304 "browser/api/system_network/system_network_apitest.cc", |
| 305 "browser/api/system_storage/storage_api_test_util.cc", |
| 306 "browser/api/system_storage/storage_api_test_util.h", |
| 307 "browser/api/system_storage/system_storage_apitest.cc", |
| 308 "browser/api/system_storage/system_storage_eject_apitest.cc", |
| 309 "browser/api/usb/usb_apitest.cc", |
| 310 "browser/guest_view/app_view/app_view_apitest.cc", |
| 311 "browser/guest_view/web_view/web_view_apitest.h", |
| 312 "browser/guest_view/web_view/web_view_apitest.cc", |
| 313 "browser/guest_view/web_view/web_view_media_access_apitest.cc", |
| 314 "browser/updater/update_service_browsertest.cc", |
| 315 "shell/browser/geolocation/geolocation_apitest.cc", |
| 316 "shell/browser/shell_browsertest.cc", |
| 317 "shell/test/shell_apitest.cc", |
| 318 "shell/test/shell_apitest.h", |
| 319 "shell/test/shell_test.cc", |
| 320 "shell/test/shell_test.h", |
| 321 "shell/test/shell_test_launcher_delegate.cc", |
| 322 "shell/test/shell_test_launcher_delegate.h", |
| 323 "shell/test/shell_tests_main.cc", |
| 324 ] |
| 325 |
| 326 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 327 |
| 328 deps = [ |
| 329 ":test_support", |
| 330 "shell:app_shell_lib", |
| 331 |
| 332 # TODO(yoz): find the right deps |
| 333 "//base", |
| 334 "//base:prefs_test_support", |
| 335 "//base/test:test_support", |
| 336 "//components/storage_monitor:test_support", |
| 337 "//content/test:test_support", |
| 338 "//mojo/environment:chromium", |
| 339 "//testing/gmock", |
| 340 "//testing/gtest", |
| 341 "//third_party/mojo/src/mojo/edk/js", |
| 342 "//third_party/mojo/src/mojo/edk/system", |
| 343 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 344 ] |
| 345 |
| 346 if (is_win) { |
| 347 deps += [ "//base/allocator" ] |
| 348 } |
| 349 |
| 350 if (is_mac) { |
| 351 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
| 352 } |
| 353 } |
OLD | NEW |