From 754271347a36f2b029637777a5591c9bde34244f Mon Sep 17 00:00:00 2001 From: Hal Canary Date: Wed, 11 Oct 2017 16:00:31 -0400 Subject: GPU-CTS Program Add new application, called GPU-CTS (GPU Compatibility Test Suite), which executes skia gms against OpenGL and Vulkan backends. Makes use of googletest library for consistancy with Android CTS programs. Add googletest to DEPS gm_knowledge.h header as a stub for future work on validating gm output. gm_runner can be re-used in other programs. Talks to Skia and GM with a simple API. gpuctx executable wraps gm_runner and googletest together. Change-Id: Ie7350b22164fa73e44121c39b0f36da4038a700b Reviewed-on: https://skia-review.googlesource.com/56601 Reviewed-by: Hal Canary Commit-Queue: Hal Canary --- third_party/googletest/BUILD.gn | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 third_party/googletest/BUILD.gn (limited to 'third_party') diff --git a/third_party/googletest/BUILD.gn b/third_party/googletest/BUILD.gn new file mode 100644 index 0000000000..518360bdbe --- /dev/null +++ b/third_party/googletest/BUILD.gn @@ -0,0 +1,16 @@ +# Copyright 2017 Google Inc. +# +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import("../third_party.gni") + +if (!is_win) { + third_party("googletest") { + public_include_dirs = [ "../externals/googletest/googletest/include" ] + include_dirs = [ "../externals/googletest/googletest" ] + sources = [ + "../externals/googletest/googletest/src/gtest-all.cc", + ] + } +} -- cgit v1.2.3