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

Unified Diff: gpu/khronos_glcts_support/BUILD.gn

Issue 2310613002: Inline GPU and opus GYP files into GN build. (Closed)
Patch Set: merge Created 4 years, 3 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 | « gpu/gpu_nacl.gyp ('k') | gpu/khronos_glcts_support/khronos_glcts.gypi » ('j') | 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 9df5736910c223f5924b66fa01cedc3c9003193f..deb37fdb99334f7773b3fb7807f37dd3f847b529 100644
--- a/gpu/khronos_glcts_support/BUILD.gn
+++ b/gpu/khronos_glcts_support/BUILD.gn
@@ -9,45 +9,40 @@ declare_args() {
}
if (internal_khronos_glcts_tests) {
- khronos_glcts_gypi =
- exec_script("//build/gypi_to_gn.py",
- [
- rebase_path("khronos_glcts.gypi"),
- "--replace=<(DEPTH)=../..",
- "--replace=<(SHARED_INTERMEDIATE_DIR)=$target_gen_dir",
- ],
- "scope",
- [ "khronos_glcts.gypi" ])
-
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test_windowless
+ glcts_gtf_runfiles =
+ [ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/mustpass_es20.run" ]
+
copy("glcts_resources") {
- sources = khronos_glcts_gypi.glcts_data_dirs
+ sources = [
+ "//third_party/khronos_glcts/cts/data",
+ ]
outputs = [
"$root_out_dir/khronos_glcts_data/gl_cts/{{source_file_part}}",
]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test_windowless
copy("glcts_gtf_resources") {
- sources = khronos_glcts_gypi.glcts_gtf_data_dirs +
- khronos_glcts_gypi.glcts_gtf_runfiles
+ sources = [
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/GL",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/GL2ExtensionTests",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/GL2FixedTests",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/GL2Tests",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/GLCoverage",
+ ] + glcts_gtf_runfiles
outputs = [
"$root_out_dir/khronos_glcts_data/gl_cts/GTF/{{source_file_part}}",
]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test
action("generate_khronos_glcts_tests") {
script = "generate_khronos_glcts_tests.py"
- sources = [ "khronos_glcts_test.h" ] + khronos_glcts_gypi.glcts_gtf_runfiles
+ sources = [ "khronos_glcts_test.h" ] + glcts_gtf_runfiles
outputs = [
"$target_gen_dir/khronos_glcts_test_autogen.cc",
]
- args = [ "--outdir=" + rebase_path("$target_gen_dir") ] +
- khronos_glcts_gypi.glcts_gtf_runfiles
+ args = [ "--outdir=" + rebase_path("$target_gen_dir") ] + glcts_gtf_runfiles
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_defaults.gypi:target_defaults
config("defaults_config") {
defines = [
"DEQP_TARGET_NAME=\"chrome-gpu-command-buffer\"",
@@ -61,12 +56,27 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:debase
config("debase_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/delibs/debase" ]
}
source_set("debase") {
- sources = khronos_glcts_gypi.debase_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/delibs/debase/deDefs.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deDefs.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deFloat16.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deFloat16.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deInt32.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deInt32.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deInt32Test.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deMath.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deMath.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deMemory.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deMemory.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deRandom.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deRandom.h",
+ "//third_party/khronos_glcts/framework/delibs/debase/deString.c",
+ "//third_party/khronos_glcts/framework/delibs/debase/deString.h",
+ ]
configs += [ ":defaults_config" ]
configs -= [ "//build/config/compiler:chromium_code" ]
@@ -81,12 +91,32 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:depool
config("depool_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/delibs/depool" ]
}
source_set("depool") {
- sources = khronos_glcts_gypi.depool_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/delibs/depool/deMemPool.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/deMemPool.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolArray.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolArray.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHash.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHash.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHashArray.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHashArray.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHashSet.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHashSet.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHeap.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolHeap.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolMultiSet.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolMultiSet.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolSet.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolSet.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolStringBuilder.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolStringBuilder.h",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolTest.c",
+ "//third_party/khronos_glcts/framework/delibs/depool/dePoolTest.h",
+ ]
deps = [
":debase",
@@ -101,12 +131,20 @@ if (internal_khronos_glcts_tests) {
public_configs = [ ":depool_config" ]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:dethread
config("dethread_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/delibs/dethread" ]
}
source_set("dethread") {
- sources = khronos_glcts_gypi.dethread_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/delibs/dethread/deAtomic.c",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deAtomic.h",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deMutex.h",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deSemaphore.h",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deThread.h",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deThreadLocal.h",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deThreadTest.c",
+ "//third_party/khronos_glcts/framework/delibs/dethread/deThreadTest.h",
+ ]
deps = [
":debase",
@@ -121,16 +159,37 @@ if (internal_khronos_glcts_tests) {
public_configs = [ ":dethread_config" ]
if (is_linux) {
- sources += khronos_glcts_gypi.dethread_unix_srcs
+ sources += [
+ "//third_party/khronos_glcts/framework/delibs/dethread/unix/deMutexUnix.c",
+ "//third_party/khronos_glcts/framework/delibs/dethread/unix/deSemaphoreUnix.c",
+ "//third_party/khronos_glcts/framework/delibs/dethread/unix/deThreadLocalUnix.c",
+ "//third_party/khronos_glcts/framework/delibs/dethread/unix/deThreadUnix.c",
+ ]
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:deutil
config("deutil_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/delibs/deutil" ]
}
source_set("deutil") {
- sources = khronos_glcts_gypi.deutil_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/delibs/deutil/deClock.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deClock.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deCommandLine.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deCommandLine.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deDynamicLibrary.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deDynamicLibrary.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deFile.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deFile.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deProcess.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deProcess.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deSocket.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deSocket.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deTimer.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deTimer.h",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deTimerTest.c",
+ "//third_party/khronos_glcts/framework/delibs/deutil/deTimerTest.h",
+ ]
deps = [
":debase",
@@ -151,12 +210,48 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:decpp
config("decpp_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/delibs/decpp" ]
}
source_set("decpp") {
- sources = khronos_glcts_gypi.decpp_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/delibs/decpp/deBlockBuffer.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deBlockBuffer.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDefs.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDefs.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDirectoryIterator.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDirectoryIterator.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDynamicLibrary.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deDynamicLibrary.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deFilePath.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deFilePath.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deMemPool.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deMemPool.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deMutex.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deMutex.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/dePoolArray.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/dePoolArray.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/dePoolString.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/dePoolString.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deRandom.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deRandom.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deRingBuffer.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deRingBuffer.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSemaphore.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSemaphore.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSharedPtr.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSharedPtr.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSocket.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deSocket.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deStringUtil.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deStringUtil.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deThread.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deThread.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRingBuffer.hpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.cpp",
+ "//third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.hpp",
+ ]
deps = [
":debase",
@@ -178,7 +273,6 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs
group("delibs") {
public_deps = [
":debase",
@@ -189,12 +283,26 @@ if (internal_khronos_glcts_tests) {
]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:qphelper
config("qphelper_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/qphelper" ]
}
source_set("qphelper") {
- sources = khronos_glcts_gypi.qphelper_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/qphelper/qpCommandLine.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpCommandLine.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpCrashHandler.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpCrashHandler.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpDebugOut.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpDebugOut.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpInfo.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpInfo.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpTestLog.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpTestLog.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpWatchDog.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpWatchDog.h",
+ "//third_party/khronos_glcts/framework/qphelper/qpXmlWriter.c",
+ "//third_party/khronos_glcts/framework/qphelper/qpXmlWriter.h",
+ ]
defines = [ "QP_SUPPORT_PNG" ]
@@ -216,12 +324,68 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil
config("tcutil_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/common" ]
}
source_set("tcutil") {
- sources = khronos_glcts_gypi.tcutil_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/common/tcuApp.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuApp.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuCommandLine.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuCommandLine.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuCompressedTexture.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuCompressedTexture.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuDefs.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuDefs.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuFloat.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuFormatUtil.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuFuzzyImageCompare.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuFuzzyImageCompare.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuImageCompare.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuImageCompare.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuImageIO.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuImageIO.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuMatrix.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuMatrixUtil.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuPixelFormat.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuPlatform.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuPlatform.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuRGBA.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuRGBA.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuRandomValueIterator.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuRandomValueIterator.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuRenderTarget.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuRenderTarget.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuResource.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuResource.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuStringTemplate.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuStringTemplate.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuSurface.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuSurface.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestCase.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestCase.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestCaseWrapper.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestCaseWrapper.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestContext.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestContext.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestExecutor.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestExecutor.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestLog.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestLog.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestPackage.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTestPackage.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTexture.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTexture.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuTextureUtil.cpp",
+ "//third_party/khronos_glcts/framework/common/tcuTextureUtil.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuVector.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuVectorType.hpp",
+ "//third_party/khronos_glcts/framework/common/tcuVectorUtil.hpp",
+
+ # Not used by anything...
+ #"//third_party/khronos_glcts/framework/common/tcuZipResource.cpp",
+ #"//third_party/khronos_glcts/framework/common/tcuZipResource.hpp",
+ ]
deps = [
":delibs",
@@ -248,12 +412,25 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glwrapper
config("glwrapper_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/opengl/wrapper" ]
}
source_set("glwrapper") {
- sources = khronos_glcts_gypi.glwrapper_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glw.h",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwDefs.cpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwDefs.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwEnums.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwFunctionLoader.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwFunctions.cpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwFunctions.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwInitES20Direct.cpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwInitES20Direct.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwInitFunctions.cpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwInitFunctions.hpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwWrapper.cpp",
+ "//third_party/khronos_glcts/framework/opengl/wrapper/glwWrapper.hpp",
+ ]
deps = [
":delibs",
@@ -273,12 +450,43 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil
config("glutil_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/opengl" ]
}
source_set("glutil") {
- sources = khronos_glcts_gypi.glutil_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/opengl/gluCallLogWrapper.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluCallLogWrapper.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluContextInfo.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluContextInfo.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluDefs.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluDefs.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluDrawUtil.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluDrawUtil.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluFboRenderContext.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluFboRenderContext.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluPixelTransfer.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluPixelTransfer.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluPlatform.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluProgram.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluProgram.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluRenderContext.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluRenderContext.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluShaderUtil.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluShaderUtil.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluStateReset.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluStateReset.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluStrUtil.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluStrUtil.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluTexture.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluTexture.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluTextureUtil.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluTextureUtil.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluVarType.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluVarType.hpp",
+ "//third_party/khronos_glcts/framework/opengl/gluVarTypeUtil.cpp",
+ "//third_party/khronos_glcts/framework/opengl/gluVarTypeUtil.hpp",
+ ]
public_deps = [
":glwrapper",
@@ -302,12 +510,24 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil_egl
config("tcutil_egl_config") {
include_dirs = [ "//third_party/khronos_glcts/framework/egl" ]
}
source_set("tcutil_egl") {
- sources = khronos_glcts_gypi.tcutil_egl_srcs
+ sources = [
+ "//third_party/khronos_glcts/framework/egl/tcuEgl.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEgl.hpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglCallLogWrapper.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglCallLogWrapper.hpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglConfigFilter.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglConfigFilter.hpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglConfigInfo.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglConfigInfo.hpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglPlatform.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglPlatform.hpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglStrUtil.cpp",
+ "//third_party/khronos_glcts/framework/egl/tcuEglStrUtil.hpp",
+ ]
deps = [
":delibs",
@@ -335,7 +555,6 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_framework.gyp:khronos_glcts_framework
group("khronos_glcts_framework") {
public_deps = [
":delibs",
@@ -346,12 +565,52 @@ if (internal_khronos_glcts_tests) {
]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_cts.gyp:glcts_common
config("glcts_common_config") {
include_dirs = [ "//third_party/khronos_glcts/cts/common" ]
}
source_set("glcts_common") {
- sources = khronos_glcts_gypi.glcts_common_sources
+ sources = [
+ "//third_party/khronos_glcts/cts/common/glcConfigList.cpp",
+ "//third_party/khronos_glcts/cts/common/glcConfigList.hpp",
+ "//third_party/khronos_glcts/cts/common/glcConfigListCase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcConfigListCase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcConfigPackage.cpp",
+ "//third_party/khronos_glcts/cts/common/glcConfigPackage.hpp",
+ "//third_party/khronos_glcts/cts/common/glcContext.cpp",
+ "//third_party/khronos_glcts/cts/common/glcContext.hpp",
+ "//third_party/khronos_glcts/cts/common/glcFragDepthTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcFragDepthTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcInfoTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcInfoTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderIndexingTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderIndexingTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderIntegerMixTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderIntegerMixTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLibrary.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLibrary.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLibraryCase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLibraryCase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLoopTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderLoopTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderRenderCase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderRenderCase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderStructTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderStructTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderSwitchTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcShaderSwitchTests.hpp",
+ "//third_party/khronos_glcts/cts/common/glcTestCase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcTestCase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcTestCaseWrapper.cpp",
+ "//third_party/khronos_glcts/cts/common/glcTestCaseWrapper.hpp",
+ "//third_party/khronos_glcts/cts/common/glcTestPackage.cpp",
+ "//third_party/khronos_glcts/cts/common/glcTestPackage.hpp",
+ "//third_party/khronos_glcts/cts/common/glcTestSubcase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcTestSubcase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcUniformBlockCase.cpp",
+ "//third_party/khronos_glcts/cts/common/glcUniformBlockCase.hpp",
+ "//third_party/khronos_glcts/cts/common/glcUniformBlockTests.cpp",
+ "//third_party/khronos_glcts/cts/common/glcUniformBlockTests.hpp",
+ ]
deps = [
":delibs",
@@ -374,12 +633,16 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_cts.gyp:glcts_gtf_wrapper
config("glcts_gtf_wrapper_config") {
include_dirs = [ "//third_party/khronos_glcts/cts/gtf" ]
}
source_set("glcts_gtf_wrapper") {
- sources = khronos_glcts_gypi.glcts_gtf_wrapper_srcs
+ sources = [
+ "//third_party/khronos_glcts/cts/gtf/gtfTestContext.cpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfTestContext.hpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfWrapper.cpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfWrapper.h",
+ ]
deps = [
":delibs",
@@ -404,15 +667,162 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_gtf.gyp:gtf_es
config("gtf_es_config") {
include_dirs = [ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source" ]
}
source_set("gtf_es") {
- sources =
- khronos_glcts_gypi.gtf_core_srcs + khronos_glcts_gypi.gtf_gl_core_srcs +
- khronos_glcts_gypi.gtf_gles2_srcs +
- khronos_glcts_gypi.gtf_gles2_es_only_srcs
+ sources = [
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFAttDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFDepthRangeParamGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFModelDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFPointParamGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFReadPixelsGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFShaderDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFShaderTextGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFStateDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFTestTextureFloatBase.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFTexDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFTexParamGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL/GTFUniDataGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFArguments.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFFileReader.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFLog.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFMemFile.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFModelData.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFPort.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFStringUtils.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTest.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestCompareGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestDriver.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestElement.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestUtil.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFgl.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/MIMG.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/XmlUtils.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/eglu.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/eglut.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/gl2Native.c",
+
+ # Base
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestAttributeGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestBindAllAttributes.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestCreateObjectGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestDetachGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestFixedDataType.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestFramebufferObjects.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetAttachedObjects.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetAttributeLocation.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetBIFD.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetExtensions.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetProgramInfoLog.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetProgramiv.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetShaderInfoLog.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetShaderiv.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetUniform.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestGetVertexAttrib.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestMaxVertexAttrib.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestMultipleShaders.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestRelinkProgram.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestUniform.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestUniformQueryGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestVertexAttribPointer.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestVertexAttributes.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2Tests/GTFGL2TestVertexProgramPointSize.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestGL2Test.c",
+
+ # Build
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestBuildGL.c",
+
+ # Shader load
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestShaderLoadGL.c",
+
+ # Rasterization
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestRasterizationGL.c",
+
+ # Complexity
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestComplexityGL.c",
+
+ # Coverage
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFCoverageDict.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFCoverageGL.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestCoverageGL.c",
+
+ # Fixed-function
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestBlend.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestBufferClear.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestBufferColor.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestBufferCorners.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestBufferObjects.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestClip.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestColorRamp.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestCopyTexture.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestDepthBufferClear.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestDepthBufferFunctions.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestDither.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestDivideByZero.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestGets.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestMipmapsInterpolation.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestMipmapsSelection.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestPointRasterization.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestPointSprites.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestPolygonCull.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestScissor.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestStencilPlaneClear.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestStencilPlaneCorners.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestStencilPlaneFunction.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestStencilPlaneOperation.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestTextureEdgeClamp.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestTransformViewport.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestTriangleRasterization.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestTriangleTiling.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestUserClipPlanes.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestVertexOrder.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedTestViewportClamp.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedUtilg.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2FixedTests/GTFFixedUtilr.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestFixedGL.c",
+
+ # Extensions
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestConditionalQuery.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDataType1010102.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDebug.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDepth24.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDepth32.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDepthTexture.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestDepthTextureCubeMap.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestElementIndexUINT.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestFBORenderMipmap.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestFragmentPrecisionHigh.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestFramebufferObject.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestMapBuffer.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestOcclusionQuery.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestPackedDepthStencil.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestPointSizeArray.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestPointSprite.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestReadFormat.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestStencil1.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestStencil4.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestStencil8.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestTexture3D.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestTextureCompressionASTCLDR.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestTextureFloat.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestTextureFloatLinear.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestTextureNPOT.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestUtilp.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestVertexArrayObject.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestVertexHalfFloat.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GTFTestExtension.c",
+
+ # ES only.
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestCompressedETC1RGB8Texture.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestCompressedPalettedTexture.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestEGLCreateContext.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestEGLImage.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestEGLImageExternal.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestRGB8RGBA8.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestRequiredInternalformat.c",
+ "//third_party/khronos_glcts/GTF_ES/glsl/GTF/Source/GL2ExtensionTests/GTFExtensionTestSurfacelessContext.c",
+ ]
deps = [
":debase",
@@ -439,12 +849,16 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_cts.gyp:glcts_gtf
config("glcts_gtf_config") {
include_dirs = [ "//third_party/khronos_glcts/cts/gtf" ]
}
source_set("glcts_gtf") {
- sources = khronos_glcts_gypi.glcts_gtf_srcs
+ sources = [
+ "//third_party/khronos_glcts/cts/gtf/gtfTestCase.cpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfTestCase.hpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfTestGroup.cpp",
+ "//third_party/khronos_glcts/cts/gtf/gtfTestGroup.hpp",
+ ]
deps = [
":delibs",
@@ -468,12 +882,14 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_cts.gyp:glcts_es2
config("glcts_es2_config") {
include_dirs = [ "//third_party/khronos_glcts/cts/gles2" ]
}
source_set("glcts_es2") {
- sources = khronos_glcts_gypi.glcts_es2_srcs
+ sources = [
+ "//third_party/khronos_glcts/cts/gles2/es2cTestPackage.cpp",
+ "//third_party/khronos_glcts/cts/gles2/es2cTestPackage.hpp",
+ ]
public_deps = [
":glcts_common",
@@ -499,7 +915,6 @@ if (internal_khronos_glcts_tests) {
}
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:tcutil_platform_windowless
source_set("tcutil_platform_windowless") {
sources = [
"native/egl_native_windowless.cc",
@@ -513,7 +928,6 @@ if (internal_khronos_glcts_tests) {
configs += [ "//build/config/compiler:rtti" ]
}
- # GYP version: gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_test_windowless
executable("khronos_glcts_test_windowless") {
sources = [
"//third_party/khronos_glcts/cts/glcTestPackageEntry.cpp",
@@ -541,7 +955,6 @@ if (internal_khronos_glcts_tests) {
}
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",
« no previous file with comments | « gpu/gpu_nacl.gyp ('k') | gpu/khronos_glcts_support/khronos_glcts.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698