/external/v8/tools/gyp/ |
H A D | gyp_main.py | 13 import gyp namespace 16 sys.exit(gyp.script_main())
|
/external/v8/tools/gyp/test/custom-generator/ |
H A D | mygenerator.py | 5 """Custom gyp generator that doesn't do much.""" 7 import gyp.common namespace
|
/external/v8/tools/gyp/tools/emacs/ |
H A D | gyp.el | 0 ;;; gyp.el - font-lock-mode support for gyp files. 8 ;; (require 'gyp) 18 (defadvice python-indent-calculate-levels (after gyp-outdent-closing-parens 20 "De-indent closing parens, braces, and brackets in gyp-mode." 21 (when (and (eq major-mode 'gyp-mode) 29 gyp-indent-guess-indent-offset 31 "Guess correct indent offset in gyp-mode." 32 (or (and (not (eq major-mode 'gyp-mode)) 46 (message "Can't guess gyp inden [all...] |
/external/v8/tools/gyp/pylib/gyp/ |
H A D | MSVSToolFile.py | 7 import gyp.common namespace 8 import gyp.easy_xml as easy_xml namespace
|
H A D | MSVSProject.py | 7 import gyp.common namespace 8 import gyp.easy_xml as easy_xml namespace
|
H A D | MSVSSettings_test.py | 11 import gyp.MSVSSettings as MSVSSettings namespace
|
H A D | MSVSUserFile.py | 11 import gyp.common namespace 12 import gyp.easy_xml as easy_xml namespace
|
H A D | common_test.py | 9 import gyp.common namespace 26 gyp.common.TopologicallySorted(graph.keys(), GetEdge), 40 gyp.common.CycleError, gyp.common.TopologicallySorted, 45 """Test that gyp.common.GetFlavor works as intended""" 56 self.assertEqual(expected, gyp.common.GetFlavor(param))
|
H A D | easy_xml_test.py | 9 import gyp.easy_xml as easy_xml namespace
|
H A D | input_test.py | 9 import gyp.input namespace 18 self.nodes[x] = gyp.input.DependencyGraphNode(x)
|
H A D | xcode_ninja.py | 7 This updates the data structures passed to the Xcode gyp generator to build 16 import gyp.generator.ninja namespace 23 """ Create a workspace to wrap main and sources gyp paths. """ 65 gyp.generator.ninja.ComputeOutputDir(params)) 164 target_list: List of target pairs: 'base/base.gyp:base'. 166 data: Dict of flattened build files keyed on gyp path. 167 params: Dict of global options for gyp. 174 # Check for custom main gyp name, otherwise use the default CHROMIUM_GYP_FILE 175 # and prepend .ninja before the .gyp extension. 267 # Put sources_to_index in it's own gyp [all...] |
H A D | MSVSNew.py | 10 import gyp.common namespace 125 build_file: Filename of the .gyp file that the vcproj file comes from. 216 def Write(self, writer=gyp.common.WriteOnDiff): 249 relative_path = gyp.common.RelativePath(e.path, sln_root)
|
/external/boringssl/src/util/bot/ |
H A D | vs_env.py | 19 # vs_toolchain adds gyp to sys.path. 20 import gyp.MSVSVersion namespace 30 vs_version = gyp.MSVSVersion.SelectVisualStudioVersion()
|
H A D | 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/google-breakpad/src/build/ |
H A D | gyp_breakpad | 38 sys.path.insert(0, os.path.join(breakpad_root, 'tools', 'gyp', 'pylib')) 39 import gyp namespace 42 rc = gyp.main(args) 50 args.append(os.path.join(script_dir, 'all.gyp')) 60 print 'Updating projects from gyp files...'
|
/external/libyuv/files/ |
H A D | gyp_libyuv | 26 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib')) 27 import gyp namespace 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, 70 # Enforce gyp syntax checking. This adds about 20% execution time. 86 # Set the gyp dept [all...] |
/external/pdfium/build/ |
H A D | gyp_pdfium | 17 sys.path.insert(0, os.path.join(pdfium_root, 'build', 'gyp', 'pylib')) 18 import gyp namespace 22 rc = gyp.main(args) 30 args.append(os.path.join(script_dir, 'all.gyp')) 45 print 'Updating projects from gyp files...'
|
/external/skia/platform_tools/android/gyp_gen/ |
H A D | android_framework_gyp.py | 23 assert 'gyp' in DIR_CONTENTS 32 target_dir: Directory containing all gyp files, including common.gypi 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 85 ret = gyp [all...] |
/external/v8/tools/gyp/pylib/gyp/generator/ |
H A D | gypd.py | 7 This module produces gyp input as its output. Output files are given the 8 .gypd extension to avoid overwriting the .gyp files that they are generated 9 from. Internal references to .gyp files (such as those found in 11 unlike other paths, which are relative to the .gyp or .gypd file, such paths 12 are relative to the directory from which gyp was run to create the .gypd file. 16 various merges, expansions, and conditional evaluations performed by gyp 19 It's not advisable to rename .gypd files produced by this module to .gyp, 22 dependencies may be wrong; and various sections that do not belong in .gyp 25 general-purpose gyp pretty-printer; for that, you probably just want to 26 run "pprint.pprint(eval(open('source.gyp') 34 import gyp.common namespace [all...] |
H A D | msvs_test.py | 8 import gyp.generator.msvs as msvs namespace
|
H A D | ninja_test.py | 9 import gyp.generator.ninja as ninja namespace
|
H A D | xcode_test.py | 9 import gyp.generator.xcode as xcode namespace
|
H A D | dump_dependency_json.py | 7 import gyp namespace 8 import gyp.common namespace 9 import gyp.msvs_emulation namespace 24 # Some gyp steps fail if these are empty(!). 39 default_variables.setdefault('OS', gyp.common.GetFlavor(params)) 41 flavor = gyp.common.GetFlavor(params) 45 import gyp.generator.msvs as msvs_generator namespace 51 gyp.msvs_emulation.CalculateCommonVariables(default_variables, params) 56 gyp)."""
|
/external/v8/tools/gyp/test/errors/ |
H A D | gyptest-errors.py | 23 stderr = ('gyp: Duplicate target definitions for ' 24 '.*duplicate_targets.gyp:foo#target\n') 25 test.run_gyp('duplicate_targets.gyp', status=1, stderr=stderr, 28 stderr = ('.*: Unable to find targets in build file .*missing_targets.gyp.*') 29 test.run_gyp('missing_targets.gyp', status=1, stderr=stderr, 32 stderr = ('gyp: rule bar exists in duplicate, target ' 33 '.*duplicate_rule.gyp:foo#target\n') 34 test.run_gyp('duplicate_rule.gyp', status=1, stderr=stderr, 37 stderr = ("gyp: Key 'targets' repeated at level 1 with key path '' while " 38 "reading .*duplicate_node.gyp 76 stderr = (".*python.*-c.*import sys.*sys.exit.*3.*error_command.gyp.*") namespace [all...] |
/external/webrtc/webrtc/build/ |
H A D | gyp_webrtc | 27 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib')) 28 import gyp namespace 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, 91 # Enforce gyp syntax checking. This adds about 20% execution time. 107 # Set the gyp dept [all...] |