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

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

Powered by Google App Engine
This is Rietveld 408576698