Searched defs:gyp (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/tools/emacs/
H A Dchrome-filetypes.el1 ; To get syntax highlighting and tab settings for gyp(i) files, add the
7 (define-derived-mode gyp-mode python-mode "Gyp"
13 (add-to-list 'auto-mode-alist '("\\.gyp$" . gyp-mode))
14 (add-to-list 'auto-mode-alist '("\\.gypi$" . gyp-mode))
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el0 ;;; 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)
28 (define-derived-mode gyp-mode python-mode "Gyp"
29 "Major mode for editing .gyp files. See http://code.google.com/p/gyp/"
30 ;; gyp
[all...]
/external/chromium_org/tools/gyp/
H A Dgyp_main.py11 import gyp namespace
15 import gyp namespace
18 sys.exit(gyp.script_main())
/external/chromium_org/tools/gyp/test/custom-generator/
H A Dmygenerator.py5 """Custom gyp generator that doesn't do much."""
7 import gyp.common namespace
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSToolFile.py7 import gyp.common namespace
8 import gyp.easy_xml as easy_xml namespace
H A DMSVSProject.py7 import gyp.common namespace
8 import gyp.easy_xml as easy_xml namespace
H A DMSVSSettings_test.py11 import gyp.MSVSSettings as MSVSSettings namespace
H A DMSVSUserFile.py11 import gyp.common namespace
12 import gyp.easy_xml as easy_xml namespace
H A Dcommon_test.py9 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 Deasy_xml_test.py9 import gyp.easy_xml as easy_xml namespace
H A Dinput_test.py9 import gyp.input namespace
18 self.nodes[x] = gyp.input.DependencyGraphNode(x)
H A Dxcode_ninja.py7 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. """
62 gyp.generator.ninja.ComputeOutputDir(params))
149 target_list: List of target pairs: 'base/base.gyp:base'.
151 data: Dict of flattened build files keyed on gyp path.
152 params: Dict of global options for gyp.
159 # Check for custom main gyp name, otherwise use the default CHROMIUM_GYP_FILE
160 # and prepend .ninja before the .gyp extension.
237 # Put sources_to_index in it's own gyp
[all...]
H A DMSVSNew.py10 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/chromium_org/third_party/ots/
H A Dgyp_ots12 _GYP_FETCH_URL = 'https://gyp.googlecode.com/svn/trunk@' + _GYP_REVISION
15 gyp_dir = os.path.join('third_party', 'gyp')
19 raise "Couldn't fetch gyp"
27 import gyp namespace
32 args.append(os.path.join(script_dir, 'ots-standalone.gyp'))
33 sys.exit(gyp.main(args))
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
H A Dandroid_framework_gyp.py23 assert 'gyp' in DIR_CONTENTS
25 # Directory within which we can find the gyp source.
26 gyp_source_dir = os.path.join(SKIA_DIR, 'third_party', 'externals', 'gyp')
28 # In an Android tree, there is no third_party/externals/gyp, which would
31 'gyp')
35 # Ensure we import our current gyp source's module, not any version
39 import gyp namespace
45 target_dir: Directory containing all gyp files, including common.gypi
48 skia_arch_type: Target architecture to pass to gyp.
53 path: Path to root gypd file created by running gyp
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dgypd.py7 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 Dmsvs_test.py8 import gyp.generator.msvs as msvs namespace
H A Dninja_test.py9 import gyp.generator.ninja as ninja namespace
H A Dxcode_test.py9 import gyp.generator.xcode as xcode namespace
H A Ddump_dependency_json.py7 import gyp namespace
8 import gyp.common namespace
9 import gyp.msvs_emulation namespace
21 # Some gyp steps fail if these are empty(!).
36 default_variables.setdefault('OS', gyp.common.GetFlavor(params))
38 flavor = gyp.common.GetFlavor(params)
42 import gyp.generator.msvs as msvs_generator namespace
48 gyp.msvs_emulation.CalculateCommonVariables(default_variables, params)
53 gyp)."""
/external/skia/platform_tools/android/gyp_gen/
H A Dandroid_framework_gyp.py23 assert 'gyp' in DIR_CONTENTS
25 # Directory within which we can find the gyp source.
26 gyp_source_dir = os.path.join(SKIA_DIR, 'third_party', 'externals', 'gyp')
28 # In an Android tree, there is no third_party/externals/gyp, which would
31 'gyp')
35 # Ensure we import our current gyp source's module, not any version
39 import gyp namespace
45 target_dir: Directory containing all gyp files, including common.gypi
48 skia_arch_type: Target architecture to pass to gyp.
53 path: Path to root gypd file created by running gyp
[all...]
/external/chromium_org/third_party/libyuv/
H A Dgyp_libyuv27 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib'))
28 import gyp namespace
38 if arg.endswith('.gyp'):
42 # If we didn't get a file, assume 'all.gyp' in the root of the checkout.
44 args.append(os.path.join(checkout_root, 'all.gyp'))
46 # There shouldn't be a circular dependency relationship between .gyp files,
55 # Enforce gyp syntax checking. This adds about 20% execution time.
71 # Set the gyp depth variable to the root of the checkout.
74 print 'Updating projects from gyp files...'
78 gyp_rc = gyp
[all...]
/external/chromium_org/third_party/skia/experimental/webtry/
H A Dgyp_for_webtry8 gyp_source_dir = os.path.join(skia_src, 'third_party', 'externals', 'gyp')
14 import gyp namespace
27 args.append('-I%s/gyp/common.gypi' % skia_src)
34 args.append(os.path.join(webtry_cache_dir, '%s.gyp' % sys.argv[1]))
36 # gyp is really picky about the current working directory having src/ under it
43 sys.exit(gyp.main(args))
/external/chromium_org/third_party/webrtc/build/
H A Dgyp_webrtc27 sys.path.insert(0, os.path.join(checkout_root, 'tools', 'gyp', 'pylib'))
28 import gyp namespace
55 if arg.endswith('.gyp'):
59 # If we didn't get a file, assume 'all.gyp' in the root of the checkout.
61 # Because of a bug in gyp, simply adding the abspath to all.gyp doesn't
64 args.append('all.gyp')
66 # There shouldn't be a circular dependency relationship between .gyp files,
77 # Enforce gyp syntax checking. This adds about 20% execution time.
93 # Set the gyp dept
[all...]
/external/chromium_org/build/
H A Dvs_toolchain.py17 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
21 import gyp namespace
25 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and
27 the output directory after gyp generation.
54 gyp_defines_dict = gyp.NameValueListToDict(gyp.ShlexEnv('GYP_DEFINES'))
71 This needs to be run after gyp has been run so that the expected target
143 information required to pass to gyp which we use in |GetToolchainDir()|.

Completed in 313 milliseconds

12