2022-04-12 16:10:41 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-03-24 00:21:55 +00:00
|
|
|
#
|
|
|
|
# Copyright 2022 The Dawn Authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2022-03-17 21:43:17 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from dir_paths import webgpu_cts_root_dir, node_dir
|
|
|
|
from tsc_ignore_errors import run_tsc_ignore_errors
|
|
|
|
|
|
|
|
try:
|
|
|
|
old_sys_path = sys.path
|
|
|
|
sys.path = [node_dir] + sys.path
|
|
|
|
|
|
|
|
from node import RunNode
|
|
|
|
finally:
|
|
|
|
sys.path = old_sys_path
|
|
|
|
|
|
|
|
|
|
|
|
def compile_src(out_dir):
|
|
|
|
# First, clean the output directory so deleted files are pruned from old builds.
|
2022-05-10 18:17:54 +00:00
|
|
|
shutil.rmtree(out_dir, ignore_errors=True)
|
2022-03-17 21:43:17 +00:00
|
|
|
|
|
|
|
run_tsc_ignore_errors([
|
2022-04-19 22:25:45 +00:00
|
|
|
"--project",
|
|
|
|
os.path.join(webgpu_cts_root_dir, "tsconfig.json"),
|
|
|
|
"--outDir",
|
2022-03-17 21:43:17 +00:00
|
|
|
out_dir,
|
2022-04-19 22:25:45 +00:00
|
|
|
"--noEmit",
|
|
|
|
"false",
|
|
|
|
"--noEmitOnError",
|
|
|
|
"false",
|
|
|
|
"--declaration",
|
|
|
|
"false",
|
|
|
|
"--sourceMap",
|
|
|
|
"false",
|
|
|
|
"--target",
|
|
|
|
"ES2017",
|
2022-03-17 21:43:17 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
def compile_src_for_node(out_dir, additional_args=None, clean=True):
|
|
|
|
additional_args = additional_args or []
|
|
|
|
if clean:
|
|
|
|
# First, clean the output directory so deleted files are pruned from old builds.
|
2022-05-10 18:17:54 +00:00
|
|
|
shutil.rmtree(out_dir, ignore_errors=True)
|
2022-03-17 21:43:17 +00:00
|
|
|
|
|
|
|
args = [
|
2022-04-19 22:25:45 +00:00
|
|
|
"--project",
|
|
|
|
os.path.join(webgpu_cts_root_dir, "node.tsconfig.json"),
|
|
|
|
"--outDir",
|
2022-03-17 21:43:17 +00:00
|
|
|
out_dir,
|
2022-04-19 22:25:45 +00:00
|
|
|
"--noEmit",
|
|
|
|
"false",
|
|
|
|
"--noEmitOnError",
|
|
|
|
"false",
|
|
|
|
"--declaration",
|
|
|
|
"false",
|
|
|
|
"--sourceMap",
|
|
|
|
"false",
|
|
|
|
"--target",
|
|
|
|
"ES6",
|
2022-03-17 21:43:17 +00:00
|
|
|
]
|
|
|
|
args.extend(additional_args)
|
|
|
|
|
|
|
|
run_tsc_ignore_errors(args)
|
|
|
|
|
|
|
|
|
2022-04-19 22:25:45 +00:00
|
|
|
if __name__ == "__main__":
|
2022-03-17 21:43:17 +00:00
|
|
|
if len(sys.argv) != 2:
|
2022-04-19 22:25:45 +00:00
|
|
|
print("Usage: compile_src.py GEN_DIR")
|
2022-03-17 21:43:17 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
gen_dir = sys.argv[1]
|
|
|
|
|
|
|
|
# Compile the CTS src.
|
2022-04-19 22:25:45 +00:00
|
|
|
compile_src(os.path.join(gen_dir, "src"))
|
|
|
|
compile_src_for_node(os.path.join(gen_dir, "src-node"))
|
2022-03-17 21:43:17 +00:00
|
|
|
|
2022-04-19 22:25:45 +00:00
|
|
|
# Run gen_listings.js to overwrite the placeholder src/webgpu/listings.js created
|
2022-03-17 21:43:17 +00:00
|
|
|
# from transpiling src/
|
|
|
|
RunNode([
|
2022-04-19 22:25:45 +00:00
|
|
|
os.path.join(gen_dir, "src-node", "common", "tools",
|
|
|
|
"gen_listings.js"),
|
|
|
|
"--no-validate",
|
|
|
|
os.path.join(gen_dir, "src"),
|
|
|
|
os.path.join(gen_dir, "src-node", "webgpu"),
|
2022-03-17 21:43:17 +00:00
|
|
|
])
|