Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: gpu/khronos_glcts_support/BUILD.gn

Issue 1904083002: 🐬 Don't build khronos_glcts_test on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/khronos_glcts_support/BUILD.gn
diff --git a/gpu/khronos_glcts_support/BUILD.gn b/gpu/khronos_glcts_support/BUILD.gn
index dfd5253df8e42f13991fee857bef9c046216111f..9df5736910c223f5924b66fa01cedc3c9003193f 100644
--- a/gpu/khronos_glcts_support/BUILD.gn
+++ b/gpu/khronos_glcts_support/BUILD.gn
@@ -540,27 +540,29 @@ if (internal_khronos_glcts_tests) {
}
}
-# GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test
-test("khronos_glcts_test") {
- sources = [
- "khronos_glcts_test.cc",
- ]
-
- deps = [
- "//base",
- "//gpu",
- "//testing/gtest",
- ]
-
- data = [
- "khronos_glcts_test_expectations.txt",
- ]
-
- if (internal_khronos_glcts_tests) {
- sources += [ "$target_gen_dir/khronos_glcts_test_autogen.cc" ]
- deps += [
- ":generate_khronos_glcts_tests",
- ":khronos_glcts_test_windowless",
+if (!is_android) {
+ # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test
+ test("khronos_glcts_test") {
+ sources = [
+ "khronos_glcts_test.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//gpu",
+ "//testing/gtest",
]
+
+ data = [
+ "khronos_glcts_test_expectations.txt",
+ ]
+
+ if (internal_khronos_glcts_tests) {
+ sources += [ "$target_gen_dir/khronos_glcts_test_autogen.cc" ]
+ deps += [
+ ":generate_khronos_glcts_tests",
+ ":khronos_glcts_test_windowless",
+ ]
+ }
}
}
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698