Lines Matching refs:source
180 def GypProgram(env, target, source, *args, **kw):
181 source = compilable_files(env, source)
182 result = env.Program('$TOP_BUILDDIR/' + str(target), source, *args, **kw)
187 def GypTestProgram(env, target, source, *args, **kw):
188 source = compilable_files(env, source)
189 result = env.Program('$TOP_BUILDDIR/' + str(target), source, *args, **kw)
194 def GypLibrary(env, target, source, *args, **kw):
195 source = compilable_files(env, source)
196 result = env.Library('$LIB_DIR/' + str(target), source, *args, **kw)
199 def GypLoadableModule(env, target, source, *args, **kw):
200 source = compilable_files(env, source)
201 result = env.LoadableModule('$TOP_BUILDDIR/' + str(target), source, *args,
205 def GypStaticLibrary(env, target, source, *args, **kw):
206 source = compilable_files(env, source)
207 result = env.StaticLibrary('$LIB_DIR/' + str(target), source, *args, **kw)
210 def GypSharedLibrary(env, target, source, *args, **kw):
211 source = compilable_files(env, source)
212 result = env.SharedLibrary('$LIB_DIR/' + str(target), source, *args, **kw)