HomeSort by relevance Sort by last modified time
    Searched refs:Compilable (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/tools/gyp/pylib/gyp/generator/
cmake.py 83 def Compilable(filename):
84 """Return true if the file is compilable (should be in OBJS)."""
672 compilable_srcs, other_srcs = partition(srcs, Compilable)
    [all...]
android.py 542 sources = filter(make.Compilable, spec.get('sources', []))
543 generated_not_sources = [x for x in extra_sources if not make.Compilable(x)]
544 extra_sources = filter(make.Compilable, extra_sources)
600 # We add back in all of the non-compilable stuff to make sure that the
    [all...]
make.py 556 # Maps every compilable file extension to the do_cmd that compiles it.
566 def Compilable(filename):
567 """Return true if the file is compilable (should be in OBJS)."""
580 """Translate a compilable filename to its .o target."""
657 # Generate suffix rules for all compilable extensions.
767 sources = filter(Compilable, all_sources)
    [all...]

Completed in 1857 milliseconds