Lines Matching refs:source_files
24 def _get_script_environment(source_files, compiler_options, argument
27 source_files = [_quotify(f) for f in source_files]
29 _quotify('{}.o'.format(os.path.basename(f))) for f in source_files
31 source_indexes = ['{:02d}'.format(i + 1) for i in range(len(source_files))]
35 env_variables['SOURCE_FILES'] = ' '.join(source_files)
39 for i, _ in enumerate(source_files):
41 env_variables['SOURCE_FILE_{}'.format(index)] = source_files[i]
50 def run_external_build_script(context, script_path, source_files, argument
66 assert len(source_files) == len(compiler_options), (source_files,
69 script_environ = _get_script_environment(source_files, compiler_options,
97 source_files = ['a.a', 'b.b']
101 env = _get_script_environment(source_files, compiler_options,