OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COMPILABLE_EXTENSIONS
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/tools/gyp/pylib/gyp/generator/
make.py
86
COMPILABLE_EXTENSIONS
.update({'.m': 'objc', '.mm' : 'objcxx'})
509
extensions = sorted(
COMPILABLE_EXTENSIONS
.keys(), key=str.lower)
514
writer.write('\t@$(call do_cmd,%s,1)\n' %
COMPILABLE_EXTENSIONS
[ext])
520
writer.write('\t@$(call do_cmd,%s,1)\n' %
COMPILABLE_EXTENSIONS
[ext])
524
writer.write('\t@$(call do_cmd,%s,1)\n' %
COMPILABLE_EXTENSIONS
[ext])
557
COMPILABLE_EXTENSIONS
= {
568
for res in (filename.endswith(e) for e in
COMPILABLE_EXTENSIONS
):
658
for ext in
COMPILABLE_EXTENSIONS
.keys():
663
""" % (ext,
COMPILABLE_EXTENSIONS
[ext]))})
669
""" % (ext,
COMPILABLE_EXTENSIONS
[ext]))}
[
all
...]
cmake.py
63
COMPILABLE_EXTENSIONS
= {
85
return any(filename.endswith(e) for e in
COMPILABLE_EXTENSIONS
)
859
src_type =
COMPILABLE_EXTENSIONS
.get(ext, None)
873
src_type =
COMPILABLE_EXTENSIONS
.get(ext, None)
[
all
...]
android.py
105
return make.
COMPILABLE_EXTENSIONS
.get(ext) == 'cxx'
[
all
...]
Completed in 1152 milliseconds