/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | compile_commands_json.py | 51 cflags_cc = xcode_settings.GetCflagsCC(configuration_name) 55 cflags_cc = configuration.get("cflags_cc", []) 58 cflags_cc = cflags + cflags_cc 78 cflags_cc = gyp.common.EncodePOSIXShellList(cflags_cc) 85 cflags = cflags_c if isc else cflags_cc
|
H A D | ninja.py | 1074 cflags_cc = self.xcode_settings.GetCflagsCC(config_name) 1076 cflags_objcc = ["$cflags_cc"] + self.xcode_settings.GetCflagsObjCC( 1083 cflags_cc = self.msvs_settings.GetCflagsCC(config_name) 1102 cflags_cc = config.get("cflags_cc", []) 1112 cflags_cc = ( 1115 + cflags_cc 1123 cflags_cc = ( 1126 + cflags_cc 1198 ninja_file, "cflags_cc", ma [all...] |
H A D | make.py | 1390 cflags_cc = self.xcode_settings.GetCflagsCC(configname) 1396 cflags_cc = config.get("cflags_cc") 1403 self.WriteList(cflags_cc, "CFLAGS_CC_%s" % configname)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | compile_commands_json.py | 51 cflags_cc = xcode_settings.GetCflagsCC(configuration_name) 55 cflags_cc = configuration.get("cflags_cc", []) 58 cflags_cc = cflags + cflags_cc 78 cflags_cc = gyp.common.EncodePOSIXShellList(cflags_cc) 85 cflags = cflags_c if isc else cflags_cc
|
H A D | ninja.py | 1074 cflags_cc = self.xcode_settings.GetCflagsCC(config_name) 1076 cflags_objcc = ["$cflags_cc"] + self.xcode_settings.GetCflagsObjCC( 1083 cflags_cc = self.msvs_settings.GetCflagsCC(config_name) 1102 cflags_cc = config.get("cflags_cc", []) 1112 cflags_cc = ( 1115 + cflags_cc 1123 cflags_cc = ( 1126 + cflags_cc 1198 ninja_file, "cflags_cc", ma [all...] |
H A D | make.py | 1399 cflags_cc = self.xcode_settings.GetCflagsCC(configname) 1405 cflags_cc = config.get("cflags_cc") 1412 self.WriteList(cflags_cc, "CFLAGS_CC_%s" % configname)
|
/third_party/skia/tools/skqp/ |
H A D | gn_to_bp.py | 45 $cflags_cc 145 cflags_cc = strip_slashes(js['targets']['//:libskqp_app']['cflags_cc']) variable 150 cflags_cc.update(['-Wno-extra-semi-stmt']) 164 cflags_cc = gn_to_bp_utils.CleanupCCFlags(cflags_cc) variable 192 'cflags_cc': bpfmt(8, cflags_cc),
|
/third_party/skia/gn/ |
H A D | gn_to_bp.py | 82 $cflags_cc 473 cflags_cc = strip_slashes(js['targets']['//:skia']['cflags_cc']) variable 535 cflags_cc = gn_to_bp_utils.CleanupCCFlags(cflags_cc) variable 618 'cflags_cc': bpfmt(8, cflags_cc),
|
H A D | gn_to_bp_utils.py | 77 def CleanupCCFlags(cflags_cc): 79 return {s for s in cflags_cc if s.startswith('-W')}
|
/third_party/gn/src/gn/ |
H A D | compile_commands_writer.cc | 47 std::string cflags_cc; member 120 flags.cflags_cc = one_flag(kRecursiveWriterKeepDuplicates, in SetupCompileFlags() 122 CTool::kCToolCxx, &ConfigValues::cflags_cc); in SetupCompileFlags() 187 out << flags.cflags_cc; in WriteCommand()
|
H A D | config_values.h | 40 STRING_VALUES_ACCESSOR(cflags_cc)
|
H A D | config_values_generator.cc | 99 FILL_STRING_CONFIG_VALUE(cflags_cc) in Run()
|
H A D | qt_creator_writer.cc | 260 ParseCompilerOptions(it.cur().cflags_cc(), &options); in HandleTarget()
|
H A D | desc_builder.cc | 48 // "cflags_cc", "cflags_objc", "cflags_objcc", 274 CONFIG_VALUE_ARRAY_HANDLER(cflags_cc, std::string) in BuildDescription() 510 CONFIG_VALUE_ARRAY_HANDLER(cflags_cc, std::string, in BuildDescription()
|
H A D | innerapis_publicinfo_generator.cc | 189 info += GetSingleFlagInfo("cflags_cc", config->own_values().cflags_cc(), label, needSetToConfigs);
in GetFlagsInfo()
|
H A D | ninja_target_writer.cc | 347 CTool::kCToolCxx, &ConfigValues::cflags_cc, opts, path_output_, in WriteCCompilerVars()
|
H A D | ninja_c_binary_target_writer.cc | 374 target_, &ConfigValues::cflags_cc, in WriteGCCPCHCommand()
|
H A D | visual_studio_writer.cc | 166 ParseCompilerOptions(iter.cur().cflags_cc(), options); in ParseCompilerOptions()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | xcode_emulation.py | 715 cflags_cc = [] 723 cflags_cc.append("-std=%s" % clang_cxx_language_standard) 725 self._Appendf(cflags_cc, "CLANG_CXX_LIBRARY", "-stdlib=%s") 728 cflags_cc.append("-fno-rtti") 730 cflags_cc.append("-fno-exceptions") 732 cflags_cc.append("-fvisibility-inlines-hidden") 734 cflags_cc.append("-fno-threadsafe-statics") 737 cflags_cc.append("-Wno-invalid-offsetof") 749 cflags_cc += other_ccflags 752 return cflags_cc [all...] |
H A D | msvs_emulation.py | 1067 self, input, output, implicit, command, cflags_c, cflags_cc, expand_special 1075 [("cflags_cc", map(expand_special, cflags_cc + pch_output))],
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | xcode_emulation.py | 712 cflags_cc = [] 720 cflags_cc.append("-std=%s" % clang_cxx_language_standard) 722 self._Appendf(cflags_cc, "CLANG_CXX_LIBRARY", "-stdlib=%s") 725 cflags_cc.append("-fno-rtti") 727 cflags_cc.append("-fno-exceptions") 729 cflags_cc.append("-fvisibility-inlines-hidden") 731 cflags_cc.append("-fno-threadsafe-statics") 734 cflags_cc.append("-Wno-invalid-offsetof") 746 cflags_cc += other_ccflags 749 return cflags_cc [all...] |
H A D | msvs_emulation.py | 1058 self, input, output, implicit, command, cflags_c, cflags_cc, expand_special 1066 [("cflags_cc", map(expand_special, cflags_cc + pch_output))],
|
/third_party/gn/misc/vim/syntax/ |
H A D | gn.vim | 47 syn keyword gnVariable cflags cflags_c cflags_cc cflags_objc cflags_objcc
|