HaikuPorts
  • Login
  • Preferences
  • Help/Guide
  • Wiki
  • Timeline
  • Roadmap
  • View Tickets
  • Search
  • Port Log
  • Blog

Context Navigation

  • Back to Ticket #659

Ticket #659: gyp-r1501.patch

File gyp-r1501.patch, 121.5 KB (added by cipri, 3 years ago)
  • buildbot/buildbot_run.py

    diff -Naur gyp/buildbot/buildbot_run.py gyp-haiku/buildbot/buildbot_run.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • gyp

    diff -Naur gyp/gyp gyp-haiku/gyp
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • gyptest.py

    diff -Naur gyp/gyptest.py gyp-haiku/gyptest.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
    … …  
    217217      'linux2':   ['make', 'ninja'], 
    218218      'linux3':   ['make', 'ninja'], 
    219219      'darwin':   ['make', 'ninja', 'xcode'], 
     220      'haiku1':   ['make'], 
    220221    }[sys.platform] 
    221222 
    222223  for format in format_list: 
  • pylib/gyp/__init__.py

    diff -Naur gyp/pylib/gyp/__init__.py gyp-haiku/pylib/gyp/__init__.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/common_test.py

    diff -Naur gyp/pylib/gyp/common_test.py gyp-haiku/pylib/gyp/common_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/common.py

    diff -Naur gyp/pylib/gyp/common.py gyp-haiku/pylib/gyp/common.py
    old new  
    378378    return 'solaris' 
    379379  if sys.platform.startswith('freebsd'): 
    380380    return 'freebsd' 
     381  if sys.platform.startswith('haiku'): 
     382    return 'haiku' 
    381383 
    382384  return 'linux' 
    383385 
    384386 
    385387def CopyTool(flavor, out_path): 
    386   """Finds (mac|sun|win)_tool.gyp in the gyp directory and copies it 
     388  """Finds (mac|sun|win|haiku)_tool.gyp in the gyp directory and copies it 
    387389  to |out_path|.""" 
    388   prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win' }.get(flavor, None) 
     390  prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win', 'haiku': 'haiku' }.get(flavor, None) 
    389391  if not prefix: 
    390392    return 
    391393 
  • pylib/gyp/easy_xml_test.py

    diff -Naur gyp/pylib/gyp/easy_xml_test.py gyp-haiku/pylib/gyp/easy_xml_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/generator/make.py

    diff -Naur gyp/pylib/gyp/generator/make.py gyp-haiku/pylib/gyp/generator/make.py
    old new  
    491491cmd_sun_tool = ./gyp-sun-tool $(4) $< "$@" 
    492492""" 
    493493 
     494SHARED_HEADER_HAIKU_COMMANDS = """ 
     495# gyp-haiku-tool is written next to the root Makefile by gyp. 
     496# Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd 
     497# already. 
     498quiet_cmd_haiku_tool = HAIKUTOOL $(4) $< 
     499cmd_haiku_tool = ./gyp-haiku-tool $(4) $< "$@" 
     500""" 
    494501 
    495502def WriteRootHeaderSuffixRules(writer): 
    496503  extensions = sorted(COMPILABLE_EXTENSIONS.keys(), key=str.lower) 
    … …  
    20272034    header_params.update({ 
    20282035        'flock': 'lockf', 
    20292036    }) 
     2037  elif flavor == 'haiku': 
     2038    header_params.update({ 
     2039        'flock': './gyp-haiku-tool flock', 
     2040        'flock_index': 2, 
     2041        'extra_commands': SHARED_HEADER_HAIKU_COMMANDS, 
     2042    }) 
     2043         
    20302044 
    20312045  header_params.update(RunSystemTests(flavor)) 
    20322046  header_params.update({ 
  • pylib/gyp/generator/msvs_test.py

    diff -Naur gyp/pylib/gyp/generator/msvs_test.py gyp-haiku/pylib/gyp/generator/msvs_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/generator/ninja_test.py

    diff -Naur gyp/pylib/gyp/generator/ninja_test.py gyp-haiku/pylib/gyp/generator/ninja_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/haiku_tool.py

    diff -Naur gyp/pylib/gyp/haiku_tool.py gyp-haiku/pylib/gyp/haiku_tool.py
    old new  
     1#!/boot/common/bin/python 
     2# Copyright (c) 2011 Google Inc. All rights reserved. 
     3# Use of this source code is governed by a BSD-style license that can be 
     4# found in the LICENSE file. 
     5 
     6"""These functions are executed via gyp-haiku-tool when using the Makefile 
     7generator.""" 
     8 
     9import fcntl 
     10import os 
     11import struct 
     12import subprocess 
     13import sys 
     14 
     15 
     16def main(args): 
     17  executor = HaikuTool() 
     18  executor.Dispatch(args) 
     19 
     20 
     21class HaikuTool(object): 
     22  """This class performs all the Haiku tooling steps. The methods can either be 
     23  executed directly, or dispatched from an argument list.""" 
     24 
     25  def Dispatch(self, args): 
     26    """Dispatches a string command to a method.""" 
     27    if len(args) < 1: 
     28      raise Exception("Not enough arguments") 
     29 
     30    method = "Exec%s" % self._CommandifyName(args[0]) 
     31    getattr(self, method)(*args[1:]) 
     32 
     33  def _CommandifyName(self, name_string): 
     34    """Transforms a tool name like copy-info-plist to CopyInfoPlist""" 
     35    return name_string.title().replace('-', '') 
     36 
     37  def ExecFlock(self, lockfile, *cmd_list): 
     38    """Emulates the most basic behavior of Linux's flock(1).""" 
     39    # Rely on exception handling to report errors. 
     40    fd = os.open(lockfile, os.O_RDONLY|os.O_NOCTTY|os.O_CREAT, 0o666) 
     41    fcntl.flock(fd, fcntl.LOCK_EX) 
     42    ret = subprocess.call(cmd_list) 
     43    # Haiki bug -- lock is not released on file close? 
     44    fcntl.flock(fd, fcntl.LOCK_UN) 
     45    return ret 
     46 
     47 
     48if __name__ == '__main__': 
     49  sys.exit(main(sys.argv[1:])) 
  • pylib/gyp/mac_tool.py

    diff -Naur gyp/pylib/gyp/mac_tool.py gyp-haiku/pylib/gyp/mac_tool.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • pylib/gyp/MSVSSettings_test.py

    diff -Naur gyp/pylib/gyp/MSVSSettings_test.py gyp-haiku/pylib/gyp/MSVSSettings_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/sun_tool.py

    diff -Naur gyp/pylib/gyp/sun_tool.py gyp-haiku/pylib/gyp/sun_tool.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2011 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • pylib/gyp/system_test.py

    diff -Naur gyp/pylib/gyp/system_test.py gyp-haiku/pylib/gyp/system_test.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • pylib/gyp/win_tool.py

    diff -Naur gyp/pylib/gyp/win_tool.py gyp-haiku/pylib/gyp/win_tool.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • setup.py

    diff -Naur gyp/setup.py gyp-haiku/setup.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/gyptest-all.py

    diff -Naur gyp/test/actions/gyptest-all.py gyp-haiku/test/actions/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/gyptest-default.py

    diff -Naur gyp/test/actions/gyptest-default.py gyp-haiku/test/actions/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/gyptest-errors.py

    diff -Naur gyp/test/actions/gyptest-errors.py gyp-haiku/test/actions/gyptest-errors.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/confirm-dep-files.py

    diff -Naur gyp/test/actions/src/confirm-dep-files.py gyp-haiku/test/actions/src/confirm-dep-files.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/subdir1/counter.py

    diff -Naur gyp/test/actions/src/subdir1/counter.py gyp-haiku/test/actions/src/subdir1/counter.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/subdir1/make-prog1.py

    diff -Naur gyp/test/actions/src/subdir1/make-prog1.py gyp-haiku/test/actions/src/subdir1/make-prog1.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/subdir1/make-prog2.py

    diff -Naur gyp/test/actions/src/subdir1/make-prog2.py gyp-haiku/test/actions/src/subdir1/make-prog2.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/subdir2/make-file.py

    diff -Naur gyp/test/actions/src/subdir2/make-file.py gyp-haiku/test/actions/src/subdir2/make-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions/src/subdir3/generate_main.py

    diff -Naur gyp/test/actions/src/subdir3/generate_main.py gyp-haiku/test/actions/src/subdir3/generate_main.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-bare/gyptest-bare.py

    diff -Naur gyp/test/actions-bare/gyptest-bare.py gyp-haiku/test/actions-bare/gyptest-bare.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-bare/src/bare.py

    diff -Naur gyp/test/actions-bare/src/bare.py gyp-haiku/test/actions-bare/src/bare.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-multiple/gyptest-all.py

    diff -Naur gyp/test/actions-multiple/gyptest-all.py gyp-haiku/test/actions-multiple/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-multiple/src/copy.py

    diff -Naur gyp/test/actions-multiple/src/copy.py gyp-haiku/test/actions-multiple/src/copy.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2011 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/actions-multiple/src/filter.py

    diff -Naur gyp/test/actions-multiple/src/filter.py gyp-haiku/test/actions-multiple/src/filter.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2011 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/actions-none/gyptest-none.py

    diff -Naur gyp/test/actions-none/gyptest-none.py gyp-haiku/test/actions-none/gyptest-none.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-subdir/gyptest-action.py

    diff -Naur gyp/test/actions-subdir/gyptest-action.py gyp-haiku/test/actions-subdir/gyptest-action.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-subdir/src/make-file.py

    diff -Naur gyp/test/actions-subdir/src/make-file.py gyp-haiku/test/actions-subdir/src/make-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/actions-subdir/src/subdir/make-subdir-file.py

    diff -Naur gyp/test/actions-subdir/src/subdir/make-subdir-file.py gyp-haiku/test/actions-subdir/src/subdir/make-subdir-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/additional-targets/gyptest-additional.py

    diff -Naur gyp/test/additional-targets/gyptest-additional.py gyp-haiku/test/additional-targets/gyptest-additional.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/additional-targets/src/dir1/emit.py

    diff -Naur gyp/test/additional-targets/src/dir1/emit.py gyp-haiku/test/additional-targets/src/dir1/emit.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/assembly/gyptest-assembly.py

    diff -Naur gyp/test/assembly/gyptest-assembly.py gyp-haiku/test/assembly/gyptest-assembly.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/build-option/gyptest-build.py

    diff -Naur gyp/test/build-option/gyptest-build.py gyp-haiku/test/build-option/gyptest-build.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/builddir/gyptest-all.py

    diff -Naur gyp/test/builddir/gyptest-all.py gyp-haiku/test/builddir/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/builddir/gyptest-default.py

    diff -Naur gyp/test/builddir/gyptest-default.py gyp-haiku/test/builddir/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/cflags/gyptest-cflags.py

    diff -Naur gyp/test/cflags/gyptest-cflags.py gyp-haiku/test/cflags/gyptest-cflags.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/compilable/gyptest-headers.py

    diff -Naur gyp/test/compilable/gyptest-headers.py gyp-haiku/test/compilable/gyptest-headers.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/compiler-override/gyptest-compiler-env.py

    diff -Naur gyp/test/compiler-override/gyptest-compiler-env.py gyp-haiku/test/compiler-override/gyptest-compiler-env.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/compiler-override/gyptest-compiler-global-settings.py

    diff -Naur gyp/test/compiler-override/gyptest-compiler-global-settings.py gyp-haiku/test/compiler-override/gyptest-compiler-global-settings.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/compiler-override/my_cc.py

    diff -Naur gyp/test/compiler-override/my_cc.py gyp-haiku/test/compiler-override/my_cc.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/compiler-override/my_cxx.py

    diff -Naur gyp/test/compiler-override/my_cxx.py gyp-haiku/test/compiler-override/my_cxx.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/compiler-override/my_ld.py

    diff -Naur gyp/test/compiler-override/my_ld.py gyp-haiku/test/compiler-override/my_ld.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/configurations/basics/gyptest-configurations.py

    diff -Naur gyp/test/configurations/basics/gyptest-configurations.py gyp-haiku/test/configurations/basics/gyptest-configurations.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/configurations/inheritance/gyptest-inheritance.py

    diff -Naur gyp/test/configurations/inheritance/gyptest-inheritance.py gyp-haiku/test/configurations/inheritance/gyptest-inheritance.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/configurations/invalid/gyptest-configurations.py

    diff -Naur gyp/test/configurations/invalid/gyptest-configurations.py gyp-haiku/test/configurations/invalid/gyptest-configurations.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/configurations/target_platform/gyptest-target_platform.py

    diff -Naur gyp/test/configurations/target_platform/gyptest-target_platform.py gyp-haiku/test/configurations/target_platform/gyptest-target_platform.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/configurations/x64/gyptest-x86.py

    diff -Naur gyp/test/configurations/x64/gyptest-x86.py gyp-haiku/test/configurations/x64/gyptest-x86.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/copies/gyptest-all.py

    diff -Naur gyp/test/copies/gyptest-all.py gyp-haiku/test/copies/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/copies/gyptest-default.py

    diff -Naur gyp/test/copies/gyptest-default.py gyp-haiku/test/copies/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/copies/gyptest-slash.py

    diff -Naur gyp/test/copies/gyptest-slash.py gyp-haiku/test/copies/gyptest-slash.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/copies/gyptest-updir.py

    diff -Naur gyp/test/copies/gyptest-updir.py gyp-haiku/test/copies/gyptest-updir.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/custom-generator/gyptest-custom-generator.py

    diff -Naur gyp/test/custom-generator/gyptest-custom-generator.py gyp-haiku/test/custom-generator/gyptest-custom-generator.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/cxxflags/gyptest-cxxflags.py

    diff -Naur gyp/test/cxxflags/gyptest-cxxflags.py gyp-haiku/test/cxxflags/gyptest-cxxflags.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/defines/gyptest-define-override.py

    diff -Naur gyp/test/defines/gyptest-define-override.py gyp-haiku/test/defines/gyptest-define-override.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/defines/gyptest-defines-env-regyp.py

    diff -Naur gyp/test/defines/gyptest-defines-env-regyp.py gyp-haiku/test/defines/gyptest-defines-env-regyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/defines/gyptest-defines-env.py

    diff -Naur gyp/test/defines/gyptest-defines-env.py gyp-haiku/test/defines/gyptest-defines-env.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/defines/gyptest-defines.py

    diff -Naur gyp/test/defines/gyptest-defines.py gyp-haiku/test/defines/gyptest-defines.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/defines-escaping/gyptest-defines-escaping.py

    diff -Naur gyp/test/defines-escaping/gyptest-defines-escaping.py gyp-haiku/test/defines-escaping/gyptest-defines-escaping.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/dependencies/gyptest-double-dependency.py

    diff -Naur gyp/test/dependencies/gyptest-double-dependency.py gyp-haiku/test/dependencies/gyptest-double-dependency.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/dependencies/gyptest-extra-targets.py

    diff -Naur gyp/test/dependencies/gyptest-extra-targets.py gyp-haiku/test/dependencies/gyptest-extra-targets.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/dependencies/gyptest-lib-only.py

    diff -Naur gyp/test/dependencies/gyptest-lib-only.py gyp-haiku/test/dependencies/gyptest-lib-only.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/dependencies/gyptest-none-traversal.py

    diff -Naur gyp/test/dependencies/gyptest-none-traversal.py gyp-haiku/test/dependencies/gyptest-none-traversal.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/dependency-copy/gyptest-copy.py

    diff -Naur gyp/test/dependency-copy/gyptest-copy.py gyp-haiku/test/dependency-copy/gyptest-copy.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/errors/gyptest-errors.py

    diff -Naur gyp/test/errors/gyptest-errors.py gyp-haiku/test/errors/gyptest-errors.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/escaping/gyptest-colon.py

    diff -Naur gyp/test/escaping/gyptest-colon.py gyp-haiku/test/escaping/gyptest-colon.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/exclusion/gyptest-exclusion.py

    diff -Naur gyp/test/exclusion/gyptest-exclusion.py gyp-haiku/test/exclusion/gyptest-exclusion.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/external-cross-compile/gyptest-cross.py

    diff -Naur gyp/test/external-cross-compile/gyptest-cross.py gyp-haiku/test/external-cross-compile/gyptest-cross.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/actions/subdir1/make-prog1.py

    diff -Naur gyp/test/generator-output/actions/subdir1/make-prog1.py gyp-haiku/test/generator-output/actions/subdir1/make-prog1.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/actions/subdir1/make-prog2.py

    diff -Naur gyp/test/generator-output/actions/subdir1/make-prog2.py gyp-haiku/test/generator-output/actions/subdir1/make-prog2.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/actions/subdir2/make-file.py

    diff -Naur gyp/test/generator-output/actions/subdir2/make-file.py gyp-haiku/test/generator-output/actions/subdir2/make-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-actions.py

    diff -Naur gyp/test/generator-output/gyptest-actions.py gyp-haiku/test/generator-output/gyptest-actions.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-copies.py

    diff -Naur gyp/test/generator-output/gyptest-copies.py gyp-haiku/test/generator-output/gyptest-copies.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-mac-bundle.py

    diff -Naur gyp/test/generator-output/gyptest-mac-bundle.py gyp-haiku/test/generator-output/gyptest-mac-bundle.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-relocate.py

    diff -Naur gyp/test/generator-output/gyptest-relocate.py gyp-haiku/test/generator-output/gyptest-relocate.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-rules.py

    diff -Naur gyp/test/generator-output/gyptest-rules.py gyp-haiku/test/generator-output/gyptest-rules.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-subdir2-deep.py

    diff -Naur gyp/test/generator-output/gyptest-subdir2-deep.py gyp-haiku/test/generator-output/gyptest-subdir2-deep.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/gyptest-top-all.py

    diff -Naur gyp/test/generator-output/gyptest-top-all.py gyp-haiku/test/generator-output/gyptest-top-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/generator-output/rules/copy-file.py

    diff -Naur gyp/test/generator-output/rules/copy-file.py gyp-haiku/test/generator-output/rules/copy-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/gyp-defines/echo.py

    diff -Naur gyp/test/gyp-defines/echo.py gyp-haiku/test/gyp-defines/echo.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/gyp-defines/gyptest-multiple-values.py

    diff -Naur gyp/test/gyp-defines/gyptest-multiple-values.py gyp-haiku/test/gyp-defines/gyptest-multiple-values.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/gyp-defines/gyptest-regyp.py

    diff -Naur gyp/test/gyp-defines/gyptest-regyp.py gyp-haiku/test/gyp-defines/gyptest-regyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hard_dependency/gyptest-exported-hard-dependency.py

    diff -Naur gyp/test/hard_dependency/gyptest-exported-hard-dependency.py gyp-haiku/test/hard_dependency/gyptest-exported-hard-dependency.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hard_dependency/gyptest-no-exported-hard-dependency.py

    diff -Naur gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py gyp-haiku/test/hard_dependency/gyptest-no-exported-hard-dependency.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hard_dependency/src/emit.py

    diff -Naur gyp/test/hard_dependency/src/emit.py gyp-haiku/test/hard_dependency/src/emit.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hello/gyptest-all.py

    diff -Naur gyp/test/hello/gyptest-all.py gyp-haiku/test/hello/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hello/gyptest-default.py

    diff -Naur gyp/test/hello/gyptest-default.py gyp-haiku/test/hello/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hello/gyptest-disable-regyp.py

    diff -Naur gyp/test/hello/gyptest-disable-regyp.py gyp-haiku/test/hello/gyptest-disable-regyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hello/gyptest-regyp.py

    diff -Naur gyp/test/hello/gyptest-regyp.py gyp-haiku/test/hello/gyptest-regyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/hello/gyptest-target.py

    diff -Naur gyp/test/hello/gyptest-target.py gyp-haiku/test/hello/gyptest-target.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/home_dot_gyp/gyptest-home-includes-regyp.py

    diff -Naur gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py gyp-haiku/test/home_dot_gyp/gyptest-home-includes-regyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/home_dot_gyp/gyptest-home-includes.py

    diff -Naur gyp/test/home_dot_gyp/gyptest-home-includes.py gyp-haiku/test/home_dot_gyp/gyptest-home-includes.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/include_dirs/gyptest-all.py

    diff -Naur gyp/test/include_dirs/gyptest-all.py gyp-haiku/test/include_dirs/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/include_dirs/gyptest-default.py

    diff -Naur gyp/test/include_dirs/gyptest-default.py gyp-haiku/test/include_dirs/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/intermediate_dir/gyptest-intermediate-dir.py

    diff -Naur gyp/test/intermediate_dir/gyptest-intermediate-dir.py gyp-haiku/test/intermediate_dir/gyptest-intermediate-dir.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/intermediate_dir/src/script.py

    diff -Naur gyp/test/intermediate_dir/src/script.py gyp-haiku/test/intermediate_dir/src/script.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2012 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/library/gyptest-shared-obj-install-path.py

    diff -Naur gyp/test/library/gyptest-shared-obj-install-path.py gyp-haiku/test/library/gyptest-shared-obj-install-path.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/library/gyptest-shared.py

    diff -Naur gyp/test/library/gyptest-shared.py gyp-haiku/test/library/gyptest-shared.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/library/gyptest-static.py

    diff -Naur gyp/test/library/gyptest-static.py gyp-haiku/test/library/gyptest-static.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/link-objects/gyptest-all.py

    diff -Naur gyp/test/link-objects/gyptest-all.py gyp-haiku/test/link-objects/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-action-envvars.py

    diff -Naur gyp/test/mac/gyptest-action-envvars.py gyp-haiku/test/mac/gyptest-action-envvars.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-app.py

    diff -Naur gyp/test/mac/gyptest-app.py gyp-haiku/test/mac/gyptest-app.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-archs.py

    diff -Naur gyp/test/mac/gyptest-archs.py gyp-haiku/test/mac/gyptest-archs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-cflags.py

    diff -Naur gyp/test/mac/gyptest-cflags.py gyp-haiku/test/mac/gyptest-cflags.py
    old new  
    1  
    2 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    32 
    43# Copyright (c) 2012 Google Inc. All rights reserved. 
    54# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-copies.py

    diff -Naur gyp/test/mac/gyptest-copies.py gyp-haiku/test/mac/gyptest-copies.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-copy-dylib.py

    diff -Naur gyp/test/mac/gyptest-copy-dylib.py gyp-haiku/test/mac/gyptest-copy-dylib.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-debuginfo.py

    diff -Naur gyp/test/mac/gyptest-debuginfo.py gyp-haiku/test/mac/gyptest-debuginfo.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-depend-on-bundle.py

    diff -Naur gyp/test/mac/gyptest-depend-on-bundle.py gyp-haiku/test/mac/gyptest-depend-on-bundle.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-framework-dirs.py

    diff -Naur gyp/test/mac/gyptest-framework-dirs.py gyp-haiku/test/mac/gyptest-framework-dirs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-framework-headers.py

    diff -Naur gyp/test/mac/gyptest-framework-headers.py gyp-haiku/test/mac/gyptest-framework-headers.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-framework.py

    diff -Naur gyp/test/mac/gyptest-framework.py gyp-haiku/test/mac/gyptest-framework.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-global-settings.py

    diff -Naur gyp/test/mac/gyptest-global-settings.py gyp-haiku/test/mac/gyptest-global-settings.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-infoplist-process.py

    diff -Naur gyp/test/mac/gyptest-infoplist-process.py gyp-haiku/test/mac/gyptest-infoplist-process.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-installname.py

    diff -Naur gyp/test/mac/gyptest-installname.py gyp-haiku/test/mac/gyptest-installname.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-ldflags-passed-to-libtool.py

    diff -Naur gyp/test/mac/gyptest-ldflags-passed-to-libtool.py gyp-haiku/test/mac/gyptest-ldflags-passed-to-libtool.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-ldflags.py

    diff -Naur gyp/test/mac/gyptest-ldflags.py gyp-haiku/test/mac/gyptest-ldflags.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-libraries.py

    diff -Naur gyp/test/mac/gyptest-libraries.py gyp-haiku/test/mac/gyptest-libraries.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-loadable-module.py

    diff -Naur gyp/test/mac/gyptest-loadable-module.py gyp-haiku/test/mac/gyptest-loadable-module.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-missing-cfbundlesignature.py

    diff -Naur gyp/test/mac/gyptest-missing-cfbundlesignature.py gyp-haiku/test/mac/gyptest-missing-cfbundlesignature.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-non-strs-flattened-to-env.py

    diff -Naur gyp/test/mac/gyptest-non-strs-flattened-to-env.py gyp-haiku/test/mac/gyptest-non-strs-flattened-to-env.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-objc-gc.py

    diff -Naur gyp/test/mac/gyptest-objc-gc.py gyp-haiku/test/mac/gyptest-objc-gc.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-postbuild-copy-bundle.py

    diff -Naur gyp/test/mac/gyptest-postbuild-copy-bundle.py gyp-haiku/test/mac/gyptest-postbuild-copy-bundle.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-postbuild-defaults.py

    diff -Naur gyp/test/mac/gyptest-postbuild-defaults.py gyp-haiku/test/mac/gyptest-postbuild-defaults.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-postbuild-fail.py

    diff -Naur gyp/test/mac/gyptest-postbuild-fail.py gyp-haiku/test/mac/gyptest-postbuild-fail.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-postbuild-multiple-configurations.py

    diff -Naur gyp/test/mac/gyptest-postbuild-multiple-configurations.py gyp-haiku/test/mac/gyptest-postbuild-multiple-configurations.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-postbuild.py

    diff -Naur gyp/test/mac/gyptest-postbuild.py gyp-haiku/test/mac/gyptest-postbuild.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-prefixheader.py

    diff -Naur gyp/test/mac/gyptest-prefixheader.py gyp-haiku/test/mac/gyptest-prefixheader.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-rebuild.py

    diff -Naur gyp/test/mac/gyptest-rebuild.py gyp-haiku/test/mac/gyptest-rebuild.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-rpath.py

    diff -Naur gyp/test/mac/gyptest-rpath.py gyp-haiku/test/mac/gyptest-rpath.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-sdkroot.py

    diff -Naur gyp/test/mac/gyptest-sdkroot.py gyp-haiku/test/mac/gyptest-sdkroot.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-strip.py

    diff -Naur gyp/test/mac/gyptest-strip.py gyp-haiku/test/mac/gyptest-strip.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-type-envvars.py

    diff -Naur gyp/test/mac/gyptest-type-envvars.py gyp-haiku/test/mac/gyptest-type-envvars.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-xcode-env-order.py

    diff -Naur gyp/test/mac/gyptest-xcode-env-order.py gyp-haiku/test/mac/gyptest-xcode-env-order.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/mac/gyptest-xcode-gcc.py

    diff -Naur gyp/test/mac/gyptest-xcode-gcc.py gyp-haiku/test/mac/gyptest-xcode-gcc.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/make/gyptest-dependencies.py

    diff -Naur gyp/test/make/gyptest-dependencies.py gyp-haiku/test/make/gyptest-dependencies.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/make/gyptest-noload.py

    diff -Naur gyp/test/make/gyptest-noload.py gyp-haiku/test/make/gyptest-noload.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/many-actions/gyptest-many-actions-unsorted.py

    diff -Naur gyp/test/many-actions/gyptest-many-actions-unsorted.py gyp-haiku/test/many-actions/gyptest-many-actions-unsorted.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/many-actions/gyptest-many-actions.py

    diff -Naur gyp/test/many-actions/gyptest-many-actions.py gyp-haiku/test/many-actions/gyptest-many-actions.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/module/gyptest-default.py

    diff -Naur gyp/test/module/gyptest-default.py gyp-haiku/test/module/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/config_attrs/gyptest-config_attrs.py

    diff -Naur gyp/test/msvs/config_attrs/gyptest-config_attrs.py gyp-haiku/test/msvs/config_attrs/gyptest-config_attrs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/express/gyptest-express.py

    diff -Naur gyp/test/msvs/express/gyptest-express.py gyp-haiku/test/msvs/express/gyptest-express.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/list_excluded/gyptest-all.py

    diff -Naur gyp/test/msvs/list_excluded/gyptest-all.py gyp-haiku/test/msvs/list_excluded/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/missing_sources/gyptest-missing.py

    diff -Naur gyp/test/msvs/missing_sources/gyptest-missing.py gyp-haiku/test/msvs/missing_sources/gyptest-missing.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
    … …  
    3838test.must_contain_any_line(test.stderr(), 
    3939                           ["Missing input files:"]) 
    4040 
    41 test.pass_test() 
    42  No newline at end of file 
     41test.pass_test() 
  • test/msvs/props/gyptest-props.py

    diff -Naur gyp/test/msvs/props/gyptest-props.py gyp-haiku/test/msvs/props/gyptest-props.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/shared_output/gyptest-shared_output.py

    diff -Naur gyp/test/msvs/shared_output/gyptest-shared_output.py gyp-haiku/test/msvs/shared_output/gyptest-shared_output.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/msvs/uldi2010/gyptest-all.py

    diff -Naur gyp/test/msvs/uldi2010/gyptest-all.py gyp-haiku/test/msvs/uldi2010/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/multiple-targets/gyptest-all.py

    diff -Naur gyp/test/multiple-targets/gyptest-all.py gyp-haiku/test/multiple-targets/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/multiple-targets/gyptest-default.py

    diff -Naur gyp/test/multiple-targets/gyptest-default.py gyp-haiku/test/multiple-targets/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/ninja/action_dependencies/gyptest-action-dependencies.py

    diff -Naur gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py gyp-haiku/test/ninja/action_dependencies/gyptest-action-dependencies.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/ninja/action_dependencies/src/emit.py

    diff -Naur gyp/test/ninja/action_dependencies/src/emit.py gyp-haiku/test/ninja/action_dependencies/src/emit.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/ninja/chained-dependency/gyptest-chained-dependency.py

    diff -Naur gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py gyp-haiku/test/ninja/chained-dependency/gyptest-chained-dependency.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/ninja/normalize-paths-win/gyptest-normalize-paths.py

    diff -Naur gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py gyp-haiku/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py

    diff -Naur gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py gyp-haiku/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/no-output/gyptest-no-output.py

    diff -Naur gyp/test/no-output/gyptest-no-output.py gyp-haiku/test/no-output/gyptest-no-output.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/product/gyptest-product.py

    diff -Naur gyp/test/product/gyptest-product.py gyp-haiku/test/product/gyptest-product.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/relative/gyptest-default.py

    diff -Naur gyp/test/relative/gyptest-default.py gyp-haiku/test/relative/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rename/gyptest-filecase.py

    diff -Naur gyp/test/rename/gyptest-filecase.py gyp-haiku/test/rename/gyptest-filecase.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/restat/gyptest-restat.py

    diff -Naur gyp/test/restat/gyptest-restat.py gyp-haiku/test/restat/gyptest-restat.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/restat/src/create_intermediate.py

    diff -Naur gyp/test/restat/src/create_intermediate.py gyp-haiku/test/restat/src/create_intermediate.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/restat/src/touch.py

    diff -Naur gyp/test/restat/src/touch.py gyp-haiku/test/restat/src/touch.py
    old new  
    1 #!/usr/bin/env python 
    2 # 
     1#!/boot/common/bin/python 
     2 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
    55# found in the LICENSE file. 
  • test/rules/gyptest-all.py

    diff -Naur gyp/test/rules/gyptest-all.py gyp-haiku/test/rules/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules/gyptest-default.py

    diff -Naur gyp/test/rules/gyptest-default.py gyp-haiku/test/rules/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules/gyptest-input-root.py

    diff -Naur gyp/test/rules/gyptest-input-root.py gyp-haiku/test/rules/gyptest-input-root.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules/gyptest-special-variables.py

    diff -Naur gyp/test/rules/gyptest-special-variables.py gyp-haiku/test/rules/gyptest-special-variables.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules/src/copy-file.py

    diff -Naur gyp/test/rules/src/copy-file.py gyp-haiku/test/rules/src/copy-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules/src/rule.py

    diff -Naur gyp/test/rules/src/rule.py gyp-haiku/test/rules/src/rule.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2011 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/rules-dirname/gyptest-dirname.py

    diff -Naur gyp/test/rules-dirname/gyptest-dirname.py gyp-haiku/test/rules-dirname/gyptest-dirname.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules-dirname/src/copy-file.py

    diff -Naur gyp/test/rules-dirname/src/copy-file.py gyp-haiku/test/rules-dirname/src/copy-file.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules-dirname/src/subdir/printvars.py

    diff -Naur gyp/test/rules-dirname/src/subdir/printvars.py gyp-haiku/test/rules-dirname/src/subdir/printvars.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules-rebuild/gyptest-all.py

    diff -Naur gyp/test/rules-rebuild/gyptest-all.py gyp-haiku/test/rules-rebuild/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules-rebuild/gyptest-default.py

    diff -Naur gyp/test/rules-rebuild/gyptest-default.py gyp-haiku/test/rules-rebuild/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/rules-rebuild/src/make-sources.py

    diff -Naur gyp/test/rules-rebuild/src/make-sources.py gyp-haiku/test/rules-rebuild/src/make-sources.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
     2 
    23# Copyright (c) 2011 Google Inc. All rights reserved. 
    34# Use of this source code is governed by a BSD-style license that can be 
    45# found in the LICENSE file. 
  • test/rules-variables/gyptest-rules-variables.py

    diff -Naur gyp/test/rules-variables/gyptest-rules-variables.py gyp-haiku/test/rules-variables/gyptest-rules-variables.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-gyp-name/gyptest-all.py

    diff -Naur gyp/test/same-gyp-name/gyptest-all.py gyp-haiku/test/same-gyp-name/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-gyp-name/gyptest-default.py

    diff -Naur gyp/test/same-gyp-name/gyptest-default.py gyp-haiku/test/same-gyp-name/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-rule-output-file-name/gyptest-all.py

    diff -Naur gyp/test/same-rule-output-file-name/gyptest-all.py gyp-haiku/test/same-rule-output-file-name/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-rule-output-file-name/src/touch.py

    diff -Naur gyp/test/same-rule-output-file-name/src/touch.py gyp-haiku/test/same-rule-output-file-name/src/touch.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-source-file-name/gyptest-all.py

    diff -Naur gyp/test/same-source-file-name/gyptest-all.py gyp-haiku/test/same-source-file-name/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-source-file-name/gyptest-default.py

    diff -Naur gyp/test/same-source-file-name/gyptest-default.py gyp-haiku/test/same-source-file-name/gyptest-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-target-name/gyptest-same-target-name.py

    diff -Naur gyp/test/same-target-name/gyptest-same-target-name.py gyp-haiku/test/same-target-name/gyptest-same-target-name.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2010 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-target-name-different-directory/gyptest-all.py

    diff -Naur gyp/test/same-target-name-different-directory/gyptest-all.py gyp-haiku/test/same-target-name-different-directory/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/same-target-name-different-directory/src/touch.py

    diff -Naur gyp/test/same-target-name-different-directory/src/touch.py gyp-haiku/test/same-target-name-different-directory/src/touch.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/sanitize-rule-names/gyptest-sanitize-rule-names.py

    diff -Naur gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py gyp-haiku/test/sanitize-rule-names/gyptest-sanitize-rule-names.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/sanitize-rule-names/script.py

    diff -Naur gyp/test/sanitize-rule-names/script.py gyp-haiku/test/sanitize-rule-names/script.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/scons_tools/gyptest-tools.py

    diff -Naur gyp/test/scons_tools/gyptest-tools.py gyp-haiku/test/scons_tools/gyptest-tools.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/sibling/gyptest-all.py

    diff -Naur gyp/test/sibling/gyptest-all.py gyp-haiku/test/sibling/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/sibling/gyptest-relocate.py

    diff -Naur gyp/test/sibling/gyptest-relocate.py gyp-haiku/test/sibling/gyptest-relocate.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/small/gyptest-small.py

    diff -Naur gyp/test/small/gyptest-small.py gyp-haiku/test/small/gyptest-small.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/standalone/gyptest-standalone.py

    diff -Naur gyp/test/standalone/gyptest-standalone.py gyp-haiku/test/standalone/gyptest-standalone.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-subdir-all.py

    diff -Naur gyp/test/subdirectory/gyptest-subdir-all.py gyp-haiku/test/subdirectory/gyptest-subdir-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-subdir-default.py

    diff -Naur gyp/test/subdirectory/gyptest-subdir-default.py gyp-haiku/test/subdirectory/gyptest-subdir-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-subdir2-deep.py

    diff -Naur gyp/test/subdirectory/gyptest-subdir2-deep.py gyp-haiku/test/subdirectory/gyptest-subdir2-deep.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-SYMROOT-all.py

    diff -Naur gyp/test/subdirectory/gyptest-SYMROOT-all.py gyp-haiku/test/subdirectory/gyptest-SYMROOT-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-SYMROOT-default.py

    diff -Naur gyp/test/subdirectory/gyptest-SYMROOT-default.py gyp-haiku/test/subdirectory/gyptest-SYMROOT-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-top-all.py

    diff -Naur gyp/test/subdirectory/gyptest-top-all.py gyp-haiku/test/subdirectory/gyptest-top-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/subdirectory/gyptest-top-default.py

    diff -Naur gyp/test/subdirectory/gyptest-top-default.py gyp-haiku/test/subdirectory/gyptest-top-default.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/toolsets/gyptest-toolsets.py

    diff -Naur gyp/test/toolsets/gyptest-toolsets.py gyp-haiku/test/toolsets/gyptest-toolsets.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/toplevel-dir/gyptest-toplevel-dir.py

    diff -Naur gyp/test/toplevel-dir/gyptest-toplevel-dir.py gyp-haiku/test/toplevel-dir/gyptest-toplevel-dir.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/commands/gyptest-commands-ignore-env.py

    diff -Naur gyp/test/variables/commands/gyptest-commands-ignore-env.py gyp-haiku/test/variables/commands/gyptest-commands-ignore-env.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/commands/gyptest-commands-repeated.py

    diff -Naur gyp/test/variables/commands/gyptest-commands-repeated.py gyp-haiku/test/variables/commands/gyptest-commands-repeated.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/commands/gyptest-commands.py

    diff -Naur gyp/test/variables/commands/gyptest-commands.py gyp-haiku/test/variables/commands/gyptest-commands.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/filelist/gyptest-filelist.py

    diff -Naur gyp/test/variables/filelist/gyptest-filelist.py gyp-haiku/test/variables/filelist/gyptest-filelist.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/latelate/gyptest-latelate.py

    diff -Naur gyp/test/variables/latelate/gyptest-latelate.py gyp-haiku/test/variables/latelate/gyptest-latelate.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variables/variable-in-path/gyptest-variable-in-path.py

    diff -Naur gyp/test/variables/variable-in-path/gyptest-variable-in-path.py gyp-haiku/test/variables/variable-in-path/gyptest-variable-in-path.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/variants/gyptest-variants.py

    diff -Naur gyp/test/variants/gyptest-variants.py gyp-haiku/test/variants/gyptest-variants.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2009 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-asm-files.py

    diff -Naur gyp/test/win/gyptest-asm-files.py gyp-haiku/test/win/gyptest-asm-files.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-additional-include-dirs.py

    diff -Naur gyp/test/win/gyptest-cl-additional-include-dirs.py gyp-haiku/test/win/gyptest-cl-additional-include-dirs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-additional-options.py

    diff -Naur gyp/test/win/gyptest-cl-additional-options.py gyp-haiku/test/win/gyptest-cl-additional-options.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-buffer-security-check.py

    diff -Naur gyp/test/win/gyptest-cl-buffer-security-check.py gyp-haiku/test/win/gyptest-cl-buffer-security-check.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-character-set.py

    diff -Naur gyp/test/win/gyptest-cl-character-set.py gyp-haiku/test/win/gyptest-cl-character-set.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-debug-format.py

    diff -Naur gyp/test/win/gyptest-cl-debug-format.py gyp-haiku/test/win/gyptest-cl-debug-format.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-exception-handling.py

    diff -Naur gyp/test/win/gyptest-cl-exception-handling.py gyp-haiku/test/win/gyptest-cl-exception-handling.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-function-level-linking.py

    diff -Naur gyp/test/win/gyptest-cl-function-level-linking.py gyp-haiku/test/win/gyptest-cl-function-level-linking.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-optimizations.py

    diff -Naur gyp/test/win/gyptest-cl-optimizations.py gyp-haiku/test/win/gyptest-cl-optimizations.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-pdbname.py

    diff -Naur gyp/test/win/gyptest-cl-pdbname.py gyp-haiku/test/win/gyptest-cl-pdbname.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-rtti.py

    diff -Naur gyp/test/win/gyptest-cl-rtti.py gyp-haiku/test/win/gyptest-cl-rtti.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-runtime-checks.py

    diff -Naur gyp/test/win/gyptest-cl-runtime-checks.py gyp-haiku/test/win/gyptest-cl-runtime-checks.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-runtime-library.py

    diff -Naur gyp/test/win/gyptest-cl-runtime-library.py gyp-haiku/test/win/gyptest-cl-runtime-library.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-warning-as-error.py

    diff -Naur gyp/test/win/gyptest-cl-warning-as-error.py gyp-haiku/test/win/gyptest-cl-warning-as-error.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-cl-warning-level.py

    diff -Naur gyp/test/win/gyptest-cl-warning-level.py gyp-haiku/test/win/gyptest-cl-warning-level.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-command-quote.py

    diff -Naur gyp/test/win/gyptest-command-quote.py gyp-haiku/test/win/gyptest-command-quote.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-additional-deps.py

    diff -Naur gyp/test/win/gyptest-link-additional-deps.py gyp-haiku/test/win/gyptest-link-additional-deps.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-additional-options.py

    diff -Naur gyp/test/win/gyptest-link-additional-options.py gyp-haiku/test/win/gyptest-link-additional-options.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-aslr.py

    diff -Naur gyp/test/win/gyptest-link-aslr.py gyp-haiku/test/win/gyptest-link-aslr.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-debug-info.py

    diff -Naur gyp/test/win/gyptest-link-debug-info.py gyp-haiku/test/win/gyptest-link-debug-info.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-default-libs.py

    diff -Naur gyp/test/win/gyptest-link-default-libs.py gyp-haiku/test/win/gyptest-link-default-libs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-deffile.py

    diff -Naur gyp/test/win/gyptest-link-deffile.py gyp-haiku/test/win/gyptest-link-deffile.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-delay-load-dlls.py

    diff -Naur gyp/test/win/gyptest-link-delay-load-dlls.py gyp-haiku/test/win/gyptest-link-delay-load-dlls.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-entrypointsymbol.py

    diff -Naur gyp/test/win/gyptest-link-entrypointsymbol.py gyp-haiku/test/win/gyptest-link-entrypointsymbol.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-fixed-base.py

    diff -Naur gyp/test/win/gyptest-link-fixed-base.py gyp-haiku/test/win/gyptest-link-fixed-base.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-generate-manifest.py

    diff -Naur gyp/test/win/gyptest-link-generate-manifest.py gyp-haiku/test/win/gyptest-link-generate-manifest.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-incremental.py

    diff -Naur gyp/test/win/gyptest-link-incremental.py gyp-haiku/test/win/gyptest-link-incremental.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-library-adjust.py

    diff -Naur gyp/test/win/gyptest-link-library-adjust.py gyp-haiku/test/win/gyptest-link-library-adjust.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-library-directories.py

    diff -Naur gyp/test/win/gyptest-link-library-directories.py gyp-haiku/test/win/gyptest-link-library-directories.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-nodefaultlib.py

    diff -Naur gyp/test/win/gyptest-link-nodefaultlib.py gyp-haiku/test/win/gyptest-link-nodefaultlib.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-nxcompat.py

    diff -Naur gyp/test/win/gyptest-link-nxcompat.py gyp-haiku/test/win/gyptest-link-nxcompat.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-opt-icf.py

    diff -Naur gyp/test/win/gyptest-link-opt-icf.py gyp-haiku/test/win/gyptest-link-opt-icf.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-opt-ref.py

    diff -Naur gyp/test/win/gyptest-link-opt-ref.py gyp-haiku/test/win/gyptest-link-opt-ref.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-outputfile.py

    diff -Naur gyp/test/win/gyptest-link-outputfile.py gyp-haiku/test/win/gyptest-link-outputfile.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-restat-importlib.py

    diff -Naur gyp/test/win/gyptest-link-restat-importlib.py gyp-haiku/test/win/gyptest-link-restat-importlib.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-subsystem.py

    diff -Naur gyp/test/win/gyptest-link-subsystem.py gyp-haiku/test/win/gyptest-link-subsystem.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-link-uldi.py

    diff -Naur gyp/test/win/gyptest-link-uldi.py gyp-haiku/test/win/gyptest-link-uldi.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-long-command-line.py

    diff -Naur gyp/test/win/gyptest-long-command-line.py gyp-haiku/test/win/gyptest-long-command-line.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-macro-projectname.py

    diff -Naur gyp/test/win/gyptest-macro-projectname.py gyp-haiku/test/win/gyptest-macro-projectname.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-macro-vcinstalldir.py

    diff -Naur gyp/test/win/gyptest-macro-vcinstalldir.py gyp-haiku/test/win/gyptest-macro-vcinstalldir.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-macros-containing-gyp.py

    diff -Naur gyp/test/win/gyptest-macros-containing-gyp.py gyp-haiku/test/win/gyptest-macros-containing-gyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-macros-in-inputs-and-outputs.py

    diff -Naur gyp/test/win/gyptest-macros-in-inputs-and-outputs.py gyp-haiku/test/win/gyptest-macros-in-inputs-and-outputs.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-midl-rules.py

    diff -Naur gyp/test/win/gyptest-midl-rules.py gyp-haiku/test/win/gyptest-midl-rules.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-quoting-commands.py

    diff -Naur gyp/test/win/gyptest-quoting-commands.py gyp-haiku/test/win/gyptest-quoting-commands.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/gyptest-rc-build.py

    diff -Naur gyp/test/win/gyptest-rc-build.py gyp-haiku/test/win/gyptest-rc-build.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/precompiled/gyptest-all.py

    diff -Naur gyp/test/win/precompiled/gyptest-all.py gyp-haiku/test/win/precompiled/gyptest-all.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • test/win/vs-macros/as.py

    diff -Naur gyp/test/win/vs-macros/as.py gyp-haiku/test/win/vs-macros/as.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • tools/graphviz.py

    diff -Naur gyp/tools/graphviz.py gyp-haiku/tools/graphviz.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2011 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • tools/pretty_gyp.py

    diff -Naur gyp/tools/pretty_gyp.py gyp-haiku/tools/pretty_gyp.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • tools/pretty_sln.py

    diff -Naur gyp/tools/pretty_sln.py gyp-haiku/tools/pretty_sln.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 
  • tools/pretty_vcproj.py

    diff -Naur gyp/tools/pretty_vcproj.py gyp-haiku/tools/pretty_vcproj.py
    old new  
    1 #!/usr/bin/env python 
     1#!/boot/common/bin/python 
    22 
    33# Copyright (c) 2012 Google Inc. All rights reserved. 
    44# Use of this source code is governed by a BSD-style license that can be 

Download in other formats:

  • Original Format

Trac Powered

Powered by Trac 0.13dev-r10686
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/