summaryrefslogtreecommitdiffstats
path: root/gpu/BUILD.gn
diff options
context:
space:
mode:
authorpkotwicz <pkotwicz@chromium.org>2015-10-09 12:14:03 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-09 19:14:58 +0000
commit4ce1d0738599220f1beabbb700bc0c1ab1925b3f (patch)
tree3adb80eb822c299e871444e77c59d56e0f83ac32 /gpu/BUILD.gn
parente7b378bf50c6df2d21a0045bcb4061ecf5380012 (diff)
downloadchromium_src-4ce1d0738599220f1beabbb700bc0c1ab1925b3f.zip
chromium_src-4ce1d0738599220f1beabbb700bc0c1ab1925b3f.tar.gz
chromium_src-4ce1d0738599220f1beabbb700bc0c1ab1925b3f.tar.bz2
Make all target compile on GN & Android
BUG=507294 R=dpranke, dsinclair, piman TBR=andrewhayden Review URL: https://codereview.chromium.org/1391283002 Cr-Commit-Position: refs/heads/master@{#353352}
Diffstat (limited to 'gpu/BUILD.gn')
-rw-r--r--gpu/BUILD.gn16
1 files changed, 9 insertions, 7 deletions
diff --git a/gpu/BUILD.gn b/gpu/BUILD.gn
index 94eb30e..ddd5def 100644
--- a/gpu/BUILD.gn
+++ b/gpu/BUILD.gn
@@ -341,11 +341,13 @@ group("angle_unittests_run") {
]
}
-# TODO(GYP): Delete this after we've converted everything to GN.
-# The _run targets exist only for compatibility w/ GYP.
-group("angle_end2end_tests_run") {
- testonly = true
- deps = [
- "//third_party/angle/src/tests:angle_end2end_tests",
- ]
+if (is_win || is_linux || is_mac) {
+ # TODO(GYP): Delete this after we've converted everything to GN.
+ # The _run targets exist only for compatibility w/ GYP.
+ group("angle_end2end_tests_run") {
+ testonly = true
+ deps = [
+ "//third_party/angle/src/tests:angle_end2end_tests",
+ ]
+ }
}