diff --git a/.gitignore b/.gitignore index f403d7977d..64220a0df5 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ /third_party/glfw /third_party/googletest /third_party/gpuweb -/third_party/gpuweb-cts /third_party/jinja2 /third_party/jsoncpp /third_party/llvm-build diff --git a/DEPS b/DEPS index 7683d51900..6f35a0adf2 100644 --- a/DEPS +++ b/DEPS @@ -173,10 +173,6 @@ deps = { 'url': '{github_git}/gpuweb/gpuweb.git@16df823c91c9045b7cdf9bd0f2c0ef6d43ac95e7', 'condition': 'dawn_node', }, - 'third_party/gpuweb-cts': { - 'url': '{chromium_git}/external/github.com/gpuweb/cts@e518bfe8a42b5a3070cde35d03dc7317187801c1', - 'condition': 'dawn_standalone', - }, 'tools/golang': { 'condition': 'dawn_node', diff --git a/src/dawn/node/README.md b/src/dawn/node/README.md index 03c93512a7..8e492a7fbe 100644 --- a/src/dawn/node/README.md +++ b/src/dawn/node/README.md @@ -77,7 +77,7 @@ The `--flag` parameter must be passed in multiple times, once for each flag begi For example, on Windows, to use the d3dcompiler_47.dll from a Chromium checkout, and to dump shader output, we could run the following using Git Bash: ```sh -./src/dawn/node/tools/run-cts --verbose --dawn-node=/c/src/dawn/build/Debug/dawn.node --cts=/c/src/gpuweb-cts --flag=dlldir="C:\src\chromium\src\out\Release" --flag=enable-dawn-features=dump_shaders 'webgpu:shader,execution,builtin,abs:integer_builtin_functions,abs_unsigned:storageClass="storage";storageMode="read_write";containerType="vector";isAtomic=false;baseType="u32";type="vec2%3Cu32%3E"' +./src/dawn/node/tools/run-cts --verbose --dawn-node=/c/src/dawn/build/Debug/dawn.node --cts=/c/src/webgpu-cts --flag=dlldir="C:\src\chromium\src\out\Release" --flag=enable-dawn-features=dump_shaders 'webgpu:shader,execution,builtin,abs:integer_builtin_functions,abs_unsigned:storageClass="storage";storageMode="read_write";containerType="vector";isAtomic=false;baseType="u32";type="vec2%3Cu32%3E"' ``` Note that we pass `--verbose` above so that all test output, including the dumped shader, is written to stdout.