diff options
author | tfarina <tfarina@chromium.org> | 2015-03-27 07:12:15 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-27 14:12:54 +0000 |
commit | 9973bb235a2e9d5ba33d341a77006e3d92f764f0 (patch) | |
tree | 9d94fe6ea2338bd568f289bd5beb81310ff3cdb4 /gpu/gles2_conform_support | |
parent | 6ad0306bf6039949bf7a572b07a839a3e6cd1ebb (diff) | |
download | chromium_src-9973bb235a2e9d5ba33d341a77006e3d92f764f0.zip chromium_src-9973bb235a2e9d5ba33d341a77006e3d92f764f0.tar.gz chromium_src-9973bb235a2e9d5ba33d341a77006e3d92f764f0.tar.bz2 |
gpu: Add gles2_conform_test target to GN build.
The internal stuff will come later.
Tested on Linux with the following command lines:
$ gn gen out-gn
$ ninja -C out-gn gles2_conform_test
BUG=432959
TEST=see above
R=dpranke@chromium.org,sievers@chromium.org
Review URL: https://codereview.chromium.org/1038243002
Cr-Commit-Position: refs/heads/master@{#322573}
Diffstat (limited to 'gpu/gles2_conform_support')
-rw-r--r-- | gpu/gles2_conform_support/BUILD.gn | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gpu/gles2_conform_support/BUILD.gn b/gpu/gles2_conform_support/BUILD.gn index 853beea..35db722 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,14 @@ executable("gles2_conform_support") { deps += [ "//base/allocator" ] } } + +test("gles2_conform_test") { + sources = [ + "gles2_conform_test.cc", + ] + deps = [ + "//base", + "//gpu/config", + "//testing/gtest", + ] +} |