/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 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 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()|.
|
/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/chromium-trace/catapult/tracing/tracing_build/ |
check_gypi.py | 15 gyp = f.read() 18 data = eval(gyp) # pylint: disable=eval-used
|
/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/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. 76 # target. See https://code.google.com/p/skia/issues/detail?id=932 ("gyp 88 # Run gyp no matter what. 89 .PHONY: gyp 90 gyp: 93 # For all specific targets: run gyp if necessary, and then pass control to 94 # 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 55 # We do this, rather than including common.gypi explicitly in all our gyp [all...] |
/external/v8/ |
Makefile.nacl | 86 # NACL GYP file generation targets. 94 build/gyp/gyp --generator-output="${OUTDIR}" build/all.gyp \
|
Makefile | 251 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ 253 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ 254 test/cctest/cctest.gyp \ 255 test/unittests/unittests.gyp tools/gyp/v8.gyp \ 256 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ [all...] |
/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 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 # GYP does not default to ninja, but PDFium should. 45 print 'Updating projects from gyp files...'
|
/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/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 [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/build/ |
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, 'build', 'gyp', 'pylib')) 47 import gyp 55 """Returns the output directory that GYP will use.""" 104 rc = gyp.main(args) 114 print 'Error running GYP' 127 if arg.endswith('.gyp'): 132 # assuming 'all.gyp' from the same directory as the script. 140 args.append(os.path.join(script_dir, 'all.gyp')) 144 # There shouldn't be a circular dependency relationship between .gyp file [all...] |
vs_toolchain.py | 20 sys.path.insert(0, os.path.join(chrome_src, 'build', 'gyp', 'pylib')) 24 import gyp 28 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and 30 the output directory after gyp generation. 61 gyp_defines_dict = gyp.NameValueListToDict(gyp.ShlexEnv('GYP_DEFINES')) 122 This needs to be run after gyp has been run so that the expected target 203 information required to pass to gyp which we use in |GetToolchainDir()|.
|
/external/v8/tools/gcmole/ |
gcmole.lua | 183 -- GYP file parsing 186 local gyp = "" 187 local gyp_files = { "tools/gyp/v8.gyp", "test/cctest/cctest.gyp" } 189 local f = assert(io.open(gyp_files[i]), "failed to open GYP file") 191 gyp = gyp .. t 198 gyp:gmatch "'sources': %[.-### gcmole%((.-)%) ###(.-)%]" do
|
/external/v8/tools/vim/ |
ninja-build.vim | 14 " Requires that gyp has already generated build.ninja files, and that ninja is
|