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

Side by Side Diff: content/test/BUILD.gn

Issue 1620513002: Add isolate for content_browsertests with --site-per-process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 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
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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 # TODO(GYP): Delete this after we've converted everything to GN. 307 # TODO(GYP): Delete this after we've converted everything to GN.
308 # The _run targets exist only for compatibility w/ GYP. 308 # The _run targets exist only for compatibility w/ GYP.
309 group("content_browsertests_run") { 309 group("content_browsertests_run") {
310 testonly = true 310 testonly = true
311 deps = [ 311 deps = [
312 ":content_browsertests", 312 ":content_browsertests",
313 ] 313 ]
314 } 314 }
315 315
316 # TODO(GYP): Delete this after we've converted everything to GN.
317 # The _run targets exist only for compatibility w/ GYP.
318 group("content_site_isolation_browsertests_run") {
319 testonly = true
320 deps = [
321 ":content_browsertests",
322 ]
323 }
324
325 group("content_site_isolation_browsertests") {
326 testonly = true
327 data_deps = [
328 ":content_browsertests",
329 ]
330 }
331
316 test("content_browsertests") { 332 test("content_browsertests") {
317 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources, 333 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources,
318 ".", 334 ".",
319 "//content") 335 "//content")
320 336
321 if (is_android || is_linux || is_mac || is_win) { 337 if (is_android || is_linux || is_mac || is_win) {
322 data = [ 338 data = [
323 "data/", 339 "data/",
324 "//net/data/", 340 "//net/data/",
325 "//media/test/data/", 341 "//media/test/data/",
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 deps += [ 917 deps += [
902 "//gpu:test_support", 918 "//gpu:test_support",
903 "//media/base/android", 919 "//media/base/android",
904 "//media/base/android:media_java", 920 "//media/base/android:media_java",
905 "//testing/gmock", 921 "//testing/gmock",
906 "//ui/android:ui_java", 922 "//ui/android:ui_java",
907 ] 923 ]
908 } 924 }
909 } 925 }
910 } 926 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698