Lines Matching refs:gyp
11 * [gyp](https://code.google.com/p/gyp/)
155 "src/tools/gyp":
156 (Var("googlecode_url") % "gyp") + "/trunk@1700",
158 As you can see, I'm going to put the library into `src/tools/gyp` and checkout
175 sys.path.insert(0, os.path.join(using_skia_src, 'tools', 'gyp', 'pylib'))
176 import gyp
185 args.append('-I%s/third_party/skia/gyp/common.gypi' % using_skia_src)
187 args.append(os.path.join(script_dir, '..', 'using_skia.gyp'))
189 print 'Updating projects from gyp files...'
192 sys.exit(gyp.main(args))
197 1. `args.append('-I%s/third_party/skia/gyp/common.gypi' % using_skia_src)`
198 1. `args.append(os.path.join(script_dir, '..', 'using_skia.gyp'))`
201 `src/third_party/skia/gyp/common.gypi` file which will define necessary
203 main configuration file for our application is `src/using_skia.gyp`.
205 The `src/using_skia.gyp` file is as follows:
218 'third_party/skia/gyp/skia_lib.gyp:skia_lib'
246 inside `third_party/skia/gyp/skia_lib.gyp`.
290 With that, running `build/gyp\_using\_skia` should complete successfully. You
292 These correspond to the configurations we specified in `using\_skia.gyp`.
304 One last thing, having to run `build/gyp\_using\_skia` after each sync is a bit of
311 # A change to a .gyp, .gypi or to GYP itself should run the generator.
312 "name": "gyp",