Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: extensions/BUILD.gn

Issue 797023006: s/app_shell_browsertests/extensions_browsertests/g (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge, actually add extensions_tests.gyp Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/all.gyp ('k') | extensions/extensions.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698