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

  /external/v8/tools/
mingw-generate-makefiles.sh 47 def MonkeyBuildFileTargets(target_list, build_file):
48 """From a target_list, returns the subset from the specified build_file.
50 build_file = build_file.replace('/', '\\\\')
51 return [p for p in target_list if gyp.common.BuildFile(p) == build_file]
  /external/v8/tools/gyp/tools/
graphviz.py 50 build_file, target_name, toolset = ParseTarget(src)
51 files[build_file].append(src)
65 build_file, target_name, toolset = ParseTarget(target)
73 build_file, target_name, toolset = ParseTarget(target)
  /external/v8/tools/gyp/pylib/gyp/
common.py 62 [build_file, target] = target_split
64 build_file = None
72 return [build_file, target, toolset]
75 def ResolveTarget(build_file, target, toolset):
82 # build_file is the file relative to which 'target' is defined.
88 if build_file:
90 # containing build_file. If build_file is not in the current directory,
92 # interpreting it as relative to build_file. If parsed_build_file is
95 build_file = os.path.normpath(os.path.join(os.path.dirname(build_file)
    [all...]
input.py 709 def ExpandVariables(input, phase, variables, build_file):
791 processed_variables, build_file)
794 contents = ExpandVariables(contents, phase, variables, build_file)
811 build_file_dir = os.path.dirname(build_file)
813 # If build_file is just a leaf filename indicating a file in the
    [all...]
MSVSNew.py 113 spec = None, build_file = None, config_platform_overrides = None,
125 build_file: Filename of the .gyp file that the vcproj file comes from.
133 self.build_file = build_file
__init__.py 283 usage = 'usage: %s [options ...] [build_file ...]'
421 raise GypError((usage + '\n\n%s: error: no build_file') %
431 for build_file in build_files:
432 build_file_dir = os.path.abspath(os.path.dirname(build_file))
  /external/v8/tools/gyp/pylib/gyp/generator/
analyzer.py 275 def _WasBuildFileModified(build_file, data, files, toplevel_dir):
276 """Returns true if the build file |build_file| is either in |files| or
277 one of the files included by |build_file| is in |files|. |toplevel_dir| is
279 if _ToLocalPath(toplevel_dir, _ToGypPath(build_file)) in files:
281 print 'gyp file modified', build_file
285 if len(data[build_file]['included_files']) <= 1:
288 for include_file in data[build_file]['included_files'][1:]:
289 # |included_files| are relative to the directory of the |build_file|.
291 _ToGypPath(gyp.common.UnrelativePath(include_file, build_file))
294 print 'included gyp file modified, gyp_file=', build_file, \
    [all...]
make.py     [all...]
xcode.py 569 for build_file, build_file_dict in data.iteritems():
570 (build_file_root, build_file_ext) = os.path.splitext(build_file)
628 for build_file, build_file_dict in data.iteritems():
629 (build_file_root, build_file_ext) = os.path.splitext(build_file)
635 xcp = XcodeProject(build_file, xcodeproj_path, build_file_dict)
636 xcode_projects[build_file] = xcp
662 [build_file, target_name, toolset] = \
674 xcp = xcode_projects[build_file]
    [all...]
msvs.py     [all...]
eclipse.py 178 build_file, _, _ = gyp.common.ParseQualifiedTarget(target_list[0])
179 make_global_settings_dict = data[build_file].get('make_global_settings', {})
ninja.py     [all...]
cmake.py     [all...]
  /external/chromium-trace/catapult/tracing/tracing_build/
update_gypi.py 108 build_file = build_file_class(f.read(), check_common.FILE_GROUPS)
111 build_file.Update(files_by_group)
113 build_file.Write(f)

Completed in 794 milliseconds