1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3# Copyright (c) 2023 Huawei Device Co., Ltd. 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15 16import argparse 17import os 18import sys 19from util import build_utils 20 21 22def parse_args(args): 23 parser = argparse.ArgumentParser() 24 build_utils.add_depfile_option(parser) 25 26 parser.add_argument('--es2abc', help='path to es2abc') 27 parser.add_argument('--sources', nargs='+', help='path to .ts file') 28 parser.add_argument('--outputs', help='path to .abc file') 29 parser.add_argument('--merge-abc', action='store_true', help='merge abc') 30 parser.add_argument('--module', action='store_false', help='module type') 31 32 options = parser.parse_args(args) 33 return options 34 35 36def gen_abc(options): 37 cmd = [os.path.join(options.es2abc, 'es2abc'), '--output', options.outputs] 38 if options.merge_abc: 39 cmd.extend(['--merge-abc']) 40 if options.module: 41 cmd.extend(['--module']) 42 cmd.extend(options.sources) 43 build_utils.check_output(cmd, env=None) 44 45 46def main(args): 47 options = parse_args(args) 48 49 outputs = [options.outputs] 50 51 es2abc_path = os.path.join(options.es2abc, 'es2abc') 52 build_utils.call_and_write_depfile_if_stale( 53 lambda: gen_abc(options), 54 options, 55 depfile_deps=([options.es2abc]), 56 input_paths=(options.sources + [es2abc_path]), 57 output_paths=(outputs), 58 input_strings=args, 59 force=False, 60 add_pydeps=False 61 ) 62 63if __name__ == '__main__': 64 sys.exit(main(sys.argv[1:])) 65