| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ] | 355 ] |
| 356 } | 356 } |
| 357 | 357 |
| 358 android_resources("content_browsertests_resources") { | 358 android_resources("content_browsertests_resources") { |
| 359 testonly = true | 359 testonly = true |
| 360 resource_dirs = [ "//content/shell/android/browsertests_apk/res" ] | 360 resource_dirs = [ "//content/shell/android/browsertests_apk/res" ] |
| 361 custom_package = "org.chromium.content_browsertests_apk" | 361 custom_package = "org.chromium.content_browsertests_apk" |
| 362 } | 362 } |
| 363 } | 363 } |
| 364 | 364 |
| 365 # TODO(GYP): Delete this after we've converted everything to GN. | 365 # TODO(GYP_GONE): Delete this after we've converted everything to GN. |
| 366 # The _run targets exist only for compatibility w/ GYP. | 366 # The _run targets exist only for compatibility w/ GYP. |
| 367 group("content_site_isolation_browsertests_run") { | 367 group("content_site_isolation_browsertests_run") { |
| 368 testonly = true | 368 testonly = true |
| 369 deps = [ | 369 deps = [ |
| 370 ":content_browsertests", | 370 ":content_browsertests", |
| 371 ] | 371 ] |
| 372 } | 372 } |
| 373 | 373 |
| 374 group("content_site_isolation_browsertests") { | 374 group("content_site_isolation_browsertests") { |
| 375 testonly = true | 375 testonly = true |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 "//testing/gtest", | 894 "//testing/gtest", |
| 895 "//testing/perf", | 895 "//testing/perf", |
| 896 "//ui/gfx", | 896 "//ui/gfx", |
| 897 "//ui/gfx/geometry", | 897 "//ui/gfx/geometry", |
| 898 ] | 898 ] |
| 899 | 899 |
| 900 if (is_android) { | 900 if (is_android) { |
| 901 deps += [ "//testing/android/native_test:native_test_native_code" ] | 901 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 902 } | 902 } |
| 903 } | 903 } |
| OLD | NEW |