• Home
  • Raw
  • Download

Lines Matching full:sources

31 def _writeMakefile(filename, module_name, sources):  argument
32 if not sources:
33 raise ValueError('No sources for ' + filename)
41 out.write(_makefileSources(sources))
56 sources = [x for x in target['sources'] if x.endswith('.cc')]
57 sources.sort()
59 out.write(_makefileSources(sources))
69 out.write('generated_sources := $(call local-generated-sources-dir)\n')
90 sources = [x for x in target['sources'] if x.endswith('.cc')]
91 sources.sort()
93 out.write(_makefileSources(sources))
103 arm_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
105 arm64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
107 x86_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
110 mips_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
113 mips64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
115 x86_64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
158 sources = target['variables']['library_files']
160 out.write(_makefileSources(sources))
162 sources = target['variables']['experimental_library_files']
164 out.write(_makefileSources(sources))
173 out.write('generated_sources := $(call local-generated-sources-dir)\n')
176 # Copy js2c.py to generated sources directory and invoke there to avoid
239 sources = [x for x in target['sources'] if x.endswith('.cc')]
240 sources += ['base/platform/platform-posix.cc']
241 sources.sort()
243 out.write(_makefileSources(sources))
260 out.write(_makefileSources(sources))
285 sources = None
286 if target.get('sources'):
287 sources = [x for x in target['sources'] if x.endswith('.cc')]
288 sources.sort()
291 _writeMakefile('Android.platform.mk', 'libv8platform', sources)
293 _writeMakefile('Android.sampler.mk', 'libv8sampler', sources)