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

  /external/chromium_org/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/chromium_org/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/chromium_org/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 715 def ExpandVariables(input, phase, variables, build_file):
797 processed_variables, build_file)
800 contents = ExpandVariables(contents, phase, variables, build_file)
817 build_file_dir = os.path.dirname(build_file)
819 # 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/chromium_org/third_party/cython/src/pyximport/test/
test_pyximport.py 38 build_file = open(build_filename, "w")
39 build_file.write("""
44 build_file.close()
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
analyzer.py 230 def _WasBuildFileModified(build_file, data, files, toplevel_dir):
231 """Returns true if the build file |build_file| is either in |files| or
232 one of the files included by |build_file| is in |files|. |toplevel_dir| is
234 if _ToLocalPath(toplevel_dir, _ToGypPath(build_file)) in files:
236 print 'gyp file modified', build_file
240 if len(data[build_file]['included_files']) <= 1:
243 for include_file in data[build_file]['included_files'][1:]:
244 # |included_files| are relative to the directory of the |build_file|.
246 _ToGypPath(gyp.common.UnrelativePath(include_file, build_file))
249 print 'included gyp file modified, gyp_file=', build_file, \
    [all...]
msvs.py     [all...]
make.py     [all...]
android.py     [all...]
xcode.py 564 for build_file, build_file_dict in data.iteritems():
565 (build_file_root, build_file_ext) = os.path.splitext(build_file)
595 for build_file, build_file_dict in data.iteritems():
596 (build_file_root, build_file_ext) = os.path.splitext(build_file)
602 xcp = XcodeProject(build_file, xcodeproj_path, build_file_dict)
603 xcode_projects[build_file] = xcp
623 [build_file, target_name, toolset] = \
635 xcp = xcode_projects[build_file]
    [all...]
eclipse.py 177 build_file, _, _ = gyp.common.ParseQualifiedTarget(target_list[0])
178 make_global_settings_dict = data[build_file].get('make_global_settings', {})
ninja.py     [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
make_simple.py 271 build_file, _, _ = gyp.common.ParseQualifiedTarget(target_list[0])
272 make_global_settings = data[build_file].get('make_global_settings', [])

Completed in 712 milliseconds