| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |