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

  /external/v8/tools/
mingw-generate-makefiles.sh 29 # Monkey-patch GYP.
30 cat > tools/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...]
gyp_flag_compare.py 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_di
    [all...]
  /external/boringssl/src/util/bot/
vs_env.py 19 # vs_toolchain adds gyp to sys.path.
20 import gyp.MSVSVersion
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
26 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and
28 the output directory after gyp generation.
56 gyp_defines_dict = gyp.NameValueListToDict(gyp.ShlexEnv('GYP_DEFINES'))
99 information required to pass to gyp which we use in |GetToolchainDir()|.
update_clang.py 146 # Use gyp to find the MSVS installation, either in depot_tools as per above,
148 sys.path.append(os.path.join(THIS_DIR, 'gyp', 'pylib'))
149 import gyp.MSVSVersion
150 vs_version = gyp.MSVSVersion.SelectVisualStudioVersion(
  /build/kati/testcase/
multi_rule.mk 3 # simplified case for gyp-generated action targets
canned_recipes.mk 3 # canned recipes are used in gyp-generated Makefile (fixup_dep etc)
call.mk 1 # from gyp-generated Makefile
  /external/webrtc/talk/build/
common.gypi 39 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-7-openjdk-amd64\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
build_ios_libs.sh 40 # Check for GYP generator.
45 echo "Failed to find gyp generator." >&2
75 webrtc/build/gyp_webrtc talk/build/merge_ios_libs.gyp
  /external/google-breakpad/src/build/
gyp_breakpad 38 sys.path.insert(0, os.path.join(breakpad_root, 'tools', 'gyp', 'pylib'))
39 import gyp
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/v8/
Makefile 269 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \
272 gypfiles/toolchain.gypi gypfiles/all.gyp gypfiles/mac/asan.gyp \
273 test/cctest/cctest.gyp test/fuzzer/fuzzer.gyp \
274 test/unittests/unittests.gyp src/v8.gyp \
275 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \
    [all...]
genmakefiles.py 5 # Given a list of source files from the V8 gyp file, create a string that
278 # Slurp in the content of the V8 gyp file.
279 with open(os.path.join(os.getcwd(), './src/v8.gyp'), 'r') as f:
280 gyp = eval(f.read())
283 for target in gyp['targets']:
  /external/libyuv/files/
gyp_libyuv 11 # This script is used to run GYP for libyuv. It contains selected parts of the
26 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib'))
27 import gyp
30 """Returns a list of the supplemental files that are included in all GYP
48 if arg.endswith('.gyp'):
52 # If we didn't get a file, assume 'all.gyp' in the root of the checkout.
54 # Because of a bug in gyp, simply adding the abspath to all.gyp doesn't
57 args.append('all.gyp')
59 # There shouldn't be a circular dependency relationship between .gyp files
    [all...]
  /external/webrtc/webrtc/build/
gyp_webrtc 11 # This script is used to run GYP for WebRTC. It contains selected parts of the
27 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib'))
28 import gyp
31 """Returns a list of the supplemental files that are included in all GYP
62 if arg.endswith('.gyp'):
66 # If we didn't get a file, assume 'all.gyp' in the root of the checkout.
68 # Because of a bug in gyp, simply adding the abspath to all.gyp doesn't
71 args.append('all.gyp')
73 # There shouldn't be a circular dependency relationship between .gyp files
    [all...]
  /external/v8/gypfiles/
gyp_v8 30 # This script is wrapper for V8 that adds some support for how GYP
46 sys.path.insert(0, os.path.join(v8_root, 'tools', 'gyp', 'pylib'))
47 import gyp
55 """Returns the output directory that GYP will use."""
104 rc = gyp.main(args)
114 print 'Error running GYP'
128 print 'GYP is now disabled by default in runhooks.\n'
143 if arg.endswith('.gyp'):
148 # assuming 'all.gyp' from the same directory as the script.
156 args.append(os.path.join(script_dir, 'all.gyp'))
    [all...]
vs_toolchain.py 20 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
24 import gyp
32 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and
34 the output directory after gyp generation.
65 gyp_defines_dict = gyp.NameValueListToDict(gyp.ShlexEnv('GYP_DEFINES'))
232 This needs to be run after gyp has been run so that the expected target
235 This is used for the GYP build and gclient runhooks.
297 information required to pass to gyp which we use in |GetToolchainDir()|.
  /external/v8/tools/gcmole/
gcmole.lua 184 -- GYP file parsing
186 -- TODO(machenbach): Remove this when deprecating gyp.
190 { "src/v8.gyp", "'([^']-%.cc)'", "src/" },
191 { "test/cctest/cctest.gyp", "'(test-[^']-%.cc)'", "test/cctest/" }
198 local gyp_file = assert(io.open(filename), "failed to open GYP file")
199 local gyp = gyp_file:read('*a')
201 gyp:gmatch "%[.-### gcmole%((.-)%) ###(.-)%]" do
264 -- TODO(machenbach): Remove this comparison logic when deprecating gyp.
286 CompareSources(gn_sources, gyp_sources, "GYP")
  /build/soong/cmd/javac_wrapper/
javac_wrapper.go 38 // https://chromium.googlesource.com/chromium/src/+/master/build/android/gyp/javac.py
  /external/v8/tools/vim/
ninja-build.vim 14 " Requires that gyp has already generated build.ninja files, and that ninja is
  /external/v8/tools/mb/
mb.py 7 """MB - the Meta-Build wrapper around GYP and GN
9 MB is a wrapper script for GYP and GN that can be used to generate build files
91 subp.add_argument('--gyp-script', metavar='PATH',
93 help='path to gyp script relative to project root '
387 """Track the progress of the GYP->GN migration on the bots."""
397 STAT_GYP = 'Still GYP'
456 gyp = set()
466 if vals['type'] == 'gyp':
467 gyp.add(builder)
474 if vals['type'] == 'gyp'
    [all...]
  /external/v8/tools/clang/scripts/
update.py 363 # Use gyp to find the MSVS installation, either in depot_tools as per above,
365 sys.path.append(os.path.join(CHROMIUM_DIR, 'tools', 'gyp', 'pylib'))
366 import gyp.MSVSVersion
367 vs_version = gyp.MSVSVersion.SelectVisualStudioVersion(
    [all...]

Completed in 288 milliseconds