Lines Matching refs:sources
24 def _writeBP(filename, module_name, sources): argument
25 if not sources:
38 ''').substitute({'module_name': module_name, 'srcs' : _bpList(sorted(sources))}))
44 sources = getSourcesFunc(None)
45 if not sources:
47 sources.add('src/setup-isolate-full.cc')
50 arm_src = list(getSourcesFunc('arm') - sources)
51 arm64_src = list(getSourcesFunc('arm64') - sources)
52 x86_src = list(getSourcesFunc('x86') - sources)
53 x86_64_src = list(getSourcesFunc('x64') - sources)
54 mips_src = list(getSourcesFunc('mips') - sources)
55 mips64_src = list(getSourcesFunc('mips64') - sources)
96 ''').substitute({'srcs': _bpList(sorted(sources)),
107 def _writeGeneratedFilesBP(sources): argument
108 if not sources:
120 ''').substitute({'srcs' : _bpList(sources)})) ## Not sorted intentionally
124 def _writeLibBaseBP(sources): argument
125 if not sources:
155 ''').substitute({'srcs' : _bpList(sorted(sources))}))