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

  /external/v8/tools/
mingw-generate-makefiles.sh 29 # Monkey-patch GYP.
30 cat > build/gyp/gyp.mingw << EOF
41 import gyp
45 import gyp
51 return [p for p in target_list if gyp.common.BuildFile(p) == build_file]
52 gyp.common.BuildFileTargets = MonkeyBuildFileTargets
54 import gyp.generator.make
59 # Xcode puts shared_library results into PRODUCT_DIR, and some gyp files
67 gyp.generator.make.MakefileWriter._InstallableTargetInstallPath = Monkey_ITI
    [all...]
  /external/boringssl/src/util/bot/
vs_env.py 19 # vs_toolchain adds gyp to sys.path.
20 import gyp.MSVSVersion namespace
30 vs_version = gyp.MSVSVersion.SelectVisualStudioVersion()
34 # then 'set', and then parses the environment variables out. (GYP internally
vs_toolchain.py 14 sys.path.insert(0, os.path.join(script_dir, 'gyp', 'pylib'))
18 import gyp namespace
22 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and
24 the output directory after gyp generation.
52 gyp_defines_dict = gyp.NameValueListToDict(gyp.ShlexEnv('GYP_DEFINES'))
82 information required to pass to gyp which we use in |GetToolchainDir()|.
  /external/chromium-trace/trace-viewer/tracing/build/
check_gypi.py 21 gyp = f.read()
24 data = eval(gyp)
  /external/google-breakpad/src/build/
gyp_breakpad 38 sys.path.insert(0, os.path.join(breakpad_root, 'tools', 'gyp', 'pylib'))
39 import gyp namespace
42 rc = gyp.main(args)
44 print 'Error running GYP'
50 args.append(os.path.join(script_dir, 'all.gyp'))
57 # Set the GYP DEPTH variable to the root of the project.
60 print 'Updating projects from gyp files...'
  /external/pdfium/build/
gyp_pdfium 7 # This script is wrapper for PDFium that adds some support for how GYP
17 sys.path.insert(0, os.path.join(pdfium_root, 'build', 'gyp', 'pylib'))
18 import gyp namespace
22 rc = gyp.main(args)
24 print 'Error running GYP'
30 args.append(os.path.join(script_dir, 'all.gyp'))
37 # Set the GYP DEPTH variable to the root of the PDFium project.
40 print 'Updating projects from gyp files...'
  /external/skia/
Makefile 1 # Makefile that wraps the Gyp and build steps for Unix and Mac (but not Windows)
25 # If you want more fine-grained control, you can run gyp and then build the
26 # gyp-generated projects yourself.
35 # to the gyp-generated Makefile for *any* target name.
74 # target. See https://code.google.com/p/skia/issues/detail?id=932 ("gyp
86 # Run gyp no matter what.
87 .PHONY: gyp
88 gyp:
91 # For all specific targets: run gyp if necessary, and then pass control to
92 # the gyp-generated buildfiles
    [all...]
gyp_skia 8 # This script is a wrapper which invokes gyp with the correct --depth argument,
9 # and supports the automatic regeneration of build files if all.gyp is
20 # Directory within which we can find the gyp source.
21 gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp')
23 # Directory within which we can find most of Skia's gyp configuration files.
24 gyp_config_dir = os.path.join(script_dir, 'gyp')
26 # Allow the user to override the directory where gyp should produce its output
30 # Ensure we import our current gyp source's module, not any version
33 import gyp namespace
55 # We do this, rather than including common.gypi explicitly in all our gyp
    [all...]
  /external/v8/
Makefile.nacl 94 # NACL GYP file generation targets.
101 build/gyp/gyp --generator-output="${OUTDIR}" build/all.gyp \
Makefile 232 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \
233 build/toolchain.gypi samples/samples.gyp src/compiler/compiler.gyp \
234 src/d8.gyp test/cctest/cctest.gyp tools/gyp/v8.gyp
236 # If vtunejit=on, the v8vtune.gyp will be appended.
238 GYPFILES += src/third_party/vtune/v8vtune.gyp
399 # GYP file generation targets
    [all...]
  /external/skia/bin/
sync-and-gyp 9 # gyp if needed.
17 # bin/sync-and-gyp && ninja -C out/Debug
20 # Once changes are made to DEPS or gyp/ or the source, recompile Skia with:
22 # ${skiadir}/bin/sync-and-gyp && ninja -C ${skiadir}/out/Debug
46 find gyp -type f -print -exec git hash-object {} \;
  /external/skia/platform_tools/android/gyp_gen/
android_framework_gyp.py 23 assert 'gyp' in DIR_CONTENTS
32 target_dir: Directory containing all gyp files, including common.gypi
33 target_file: Gyp file to start on. Other files within target_dir will
35 skia_arch_type: Target architecture to pass to gyp.
38 gyp_source_dir: Directory of the gyp source code. The default is in
39 third_party/externals/gyp.
42 path: Path to root gypd file created by running gyp.
44 # Ensure we import our current gyp source's module, not any version
49 gyp_source_dir = os.path.join(SKIA_DIR, 'third_party', 'externals', 'gyp')
60 import gyp namespace
    [all...]
  /external/v8/build/
gyp_v8 30 # This script is wrapper for V8 that adds some support for how GYP
43 sys.path.insert(0, os.path.join(v8_root, 'build', 'gyp', 'pylib'))
44 import gyp namespace
110 rc = gyp.main(args)
120 print 'Error running GYP'
136 if arg.endswith('.gyp'):
141 # assuming 'all.gyp' from the same directory as the script.
149 args.append(os.path.join(script_dir, 'all.gyp'))
153 # There shouldn't be a circular dependency relationship between .gyp files
156 # Set the GYP DEPTH variable to the root of the V8 project
    [all...]
  /external/v8/tools/gcmole/
gcmole.lua 131 -- GYP file parsing
134 local gyp = ""
135 local gyp_files = { "tools/gyp/v8.gyp", "test/cctest/cctest.gyp" }
137 local f = assert(io.open(gyp_files[i]), "failed to open GYP file")
139 gyp = gyp .. t
146 gyp:gmatch "'sources': %[.-### gcmole%((.-)%) ###(.-)%]" do

Completed in 591 milliseconds