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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 297 |
298 if (is_win) { | 298 if (is_win) { |
299 deps += [ "//base/allocator" ] | 299 deps += [ "//base/allocator" ] |
300 } | 300 } |
301 } | 301 } |
302 } | 302 } |
303 | 303 |
304 test("extensions_browsertests") { | 304 test("extensions_browsertests") { |
305 sources = [ | 305 sources = [ |
306 "browser/api/audio/audio_apitest.cc", | 306 "browser/api/audio/audio_apitest.cc", |
| 307 "browser/api/bluetooth_socket/bluetooth_socket_apitest.cc", |
307 "browser/api/dns/dns_apitest.cc", | 308 "browser/api/dns/dns_apitest.cc", |
308 "browser/api/hid/hid_apitest.cc", | 309 "browser/api/hid/hid_apitest.cc", |
309 "browser/api/socket/socket_apitest.cc", | 310 "browser/api/socket/socket_apitest.cc", |
310 "browser/api/sockets_tcp/sockets_tcp_apitest.cc", | 311 "browser/api/sockets_tcp/sockets_tcp_apitest.cc", |
311 "browser/api/sockets_udp/sockets_udp_apitest.cc", | 312 "browser/api/sockets_udp/sockets_udp_apitest.cc", |
312 "browser/api/system_cpu/system_cpu_apitest.cc", | 313 "browser/api/system_cpu/system_cpu_apitest.cc", |
313 "browser/api/system_display/system_display_apitest.cc", | 314 "browser/api/system_display/system_display_apitest.cc", |
314 "browser/api/system_memory/system_memory_apitest.cc", | 315 "browser/api/system_memory/system_memory_apitest.cc", |
315 "browser/api/system_network/system_network_apitest.cc", | 316 "browser/api/system_network/system_network_apitest.cc", |
316 "browser/api/system_storage/storage_api_test_util.cc", | 317 "browser/api/system_storage/storage_api_test_util.cc", |
(...skipping 22 matching lines...) Expand all Loading... |
339 deps = [ | 340 deps = [ |
340 ":test_support", | 341 ":test_support", |
341 "shell:app_shell_lib", | 342 "shell:app_shell_lib", |
342 | 343 |
343 # TODO(yoz): find the right deps | 344 # TODO(yoz): find the right deps |
344 "//base", | 345 "//base", |
345 "//base:prefs_test_support", | 346 "//base:prefs_test_support", |
346 "//base/test:test_support", | 347 "//base/test:test_support", |
347 "//components/storage_monitor:test_support", | 348 "//components/storage_monitor:test_support", |
348 "//content/test:test_support", | 349 "//content/test:test_support", |
| 350 "//device/bluetooth:mocks", |
349 "//mojo/environment:chromium", | 351 "//mojo/environment:chromium", |
350 "//testing/gmock", | 352 "//testing/gmock", |
351 "//testing/gtest", | 353 "//testing/gtest", |
352 "//third_party/mojo/src/mojo/edk/js", | 354 "//third_party/mojo/src/mojo/edk/js", |
353 "//third_party/mojo/src/mojo/edk/system", | 355 "//third_party/mojo/src/mojo/edk/system", |
354 "//third_party/mojo/src/mojo/public/cpp/bindings", | 356 "//third_party/mojo/src/mojo/public/cpp/bindings", |
355 ] | 357 ] |
356 | 358 |
357 if (is_win) { | 359 if (is_win) { |
358 deps += [ "//base/allocator" ] | 360 deps += [ "//base/allocator" ] |
359 } | 361 } |
360 | 362 |
361 if (is_mac) { | 363 if (is_mac) { |
362 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 364 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
363 } | 365 } |
364 } | 366 } |
OLD | NEW |