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("//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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 ] | 332 ] |
333 } | 333 } |
334 | 334 |
335 android_resources("content_browsertests_resources") { | 335 android_resources("content_browsertests_resources") { |
336 testonly = true | 336 testonly = true |
337 resource_dirs = [ "//content/shell/android/browsertests_apk/res" ] | 337 resource_dirs = [ "//content/shell/android/browsertests_apk/res" ] |
338 custom_package = "org.chromium.content_browsertests_apk" | 338 custom_package = "org.chromium.content_browsertests_apk" |
339 } | 339 } |
340 } | 340 } |
341 | 341 |
| 342 # TODO(GYP): Delete this after we've converted everything to GN. |
| 343 # The _run targets exist only for compatibility w/ GYP. |
| 344 group("content_site_isolation_browsertests_run") { |
| 345 testonly = true |
| 346 deps = [ |
| 347 ":content_browsertests", |
| 348 ] |
| 349 } |
| 350 |
| 351 group("content_site_isolation_browsertests") { |
| 352 testonly = true |
| 353 data = [ |
| 354 "//testing/buildbot/filters/site-per-process.content_browsertests.filter", |
| 355 ] |
| 356 data_deps = [ |
| 357 ":content_browsertests", |
| 358 ] |
| 359 } |
| 360 |
342 test("content_browsertests") { | 361 test("content_browsertests") { |
343 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources, | 362 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources, |
344 ".", | 363 ".", |
345 "//content") | 364 "//content") |
346 | 365 |
347 if (is_android || is_linux || is_mac || is_win) { | 366 if (is_android || is_linux || is_mac || is_win) { |
348 data = [ | 367 data = [ |
349 "$root_out_dir/content_shell.pak", | 368 "$root_out_dir/content_shell.pak", |
350 "data/", | 369 "data/", |
351 "//net/data/", | 370 "//net/data/", |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 deps += [ | 918 deps += [ |
900 "//gpu:test_support", | 919 "//gpu:test_support", |
901 "//media/base/android", | 920 "//media/base/android", |
902 "//media/base/android:media_java", | 921 "//media/base/android:media_java", |
903 "//testing/gmock", | 922 "//testing/gmock", |
904 "//ui/android:ui_java", | 923 "//ui/android:ui_java", |
905 ] | 924 ] |
906 } | 925 } |
907 } | 926 } |
908 } | 927 } |
OLD | NEW |