Index: gpu/gles2_conform_support/BUILD.gn |
diff --git a/gpu/gles2_conform_support/BUILD.gn b/gpu/gles2_conform_support/BUILD.gn |
index 853beea4bfd38ba7241a5ffe8b976e128b4597d2..fb489b0928e18d134019a76991320b8e1016b436 100644 |
--- a/gpu/gles2_conform_support/BUILD.gn |
+++ b/gpu/gles2_conform_support/BUILD.gn |
@@ -3,6 +3,7 @@ |
# found in the LICENSE file. |
import("//build/config/allocator.gni") |
+import("//testing/test.gni") |
# GYP version: gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_support |
executable("gles2_conform_support") { |
@@ -36,3 +37,13 @@ executable("gles2_conform_support") { |
deps += [ "//base/allocator" ] |
} |
} |
+test("gles2_conform_test") { |
tfarina
2015/03/27 00:11:38
ops, I forgot to add a newline above. will do in p
|
+ sources = [ |
+ "gles2_conform_test.cc", |
+ ] |
+ deps = [ |
+ "//base", |
+ "//gpu/config", |
+ "//testing/gtest", |
+ ] |
+} |
tfarina
2015/03/27 00:11:38
small start, but at least it is something. The res
|