Home | History | Annotate | Download | only in tools

Lines Matching refs:gyp

8 """Given the output of -t commands from a ninja build for a gyp and GN generated
123 # GYP supports paths above the source root like <(DEPTH)/../foo while such
159 def CompareLists(gyp, gn, name, dont_care_gyp=None, dont_care_gn=None):
160 """Return a report of any differences between gyp and gn lists, ignoring
161 anything in |dont_care_{gyp|gn}| respectively."""
168 if gyp[name] != gn[name]:
169 gyp_set = set(gyp[name])
178 output += ' In gyp, but not in GN:\n %s' % '\n '.join(
182 output += ' In GN, but not in gyp:\n %s' % '\n '.join(
217 print >> sys.stderr, 'Expecting gyp outdir in %s...' % gyp_out_dir
218 gyp = Run('ninja -C %s -t commands %s' % (gyp_out_dir, " ".join(sys.argv[4:])))
224 all_gyp_flags = GetFlags(gyp.splitlines(),
233 print ' In gyp, not in GN:\n %s' % '\n '.join(
235 print ' In GN, not in gyp:\n %s' % '\n '.join(