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