-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
diff -Naur gyp/gyp gyp-haiku/gyp
|
old
|
new
|
|
| 1 | | #!/usr/bin/env python |
| | 1 | #!/boot/common/bin/python |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
diff -Naur gyp/gyptest.py gyp-haiku/gyptest.py
|
old
|
new
|
|
| 1 | | #!/usr/bin/env python |
| | 1 | #!/boot/common/bin/python |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| … |
… |
|
| 217 | 217 | 'linux2': ['make', 'ninja'], |
| 218 | 218 | 'linux3': ['make', 'ninja'], |
| 219 | 219 | 'darwin': ['make', 'ninja', 'xcode'], |
| | 220 | 'haiku1': ['make'], |
| 220 | 221 | }[sys.platform] |
| 221 | 222 | |
| 222 | 223 | for format in format_list: |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
diff -Naur gyp/pylib/gyp/common.py gyp-haiku/pylib/gyp/common.py
|
old
|
new
|
|
| 378 | 378 | return 'solaris' |
| 379 | 379 | if sys.platform.startswith('freebsd'): |
| 380 | 380 | return 'freebsd' |
| | 381 | if sys.platform.startswith('haiku'): |
| | 382 | return 'haiku' |
| 381 | 383 | |
| 382 | 384 | return 'linux' |
| 383 | 385 | |
| 384 | 386 | |
| 385 | 387 | def 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 |
| 387 | 389 | 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) |
| 389 | 391 | if not prefix: |
| 390 | 392 | return |
| 391 | 393 | |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
diff -Naur gyp/pylib/gyp/generator/make.py gyp-haiku/pylib/gyp/generator/make.py
|
old
|
new
|
|
| 491 | 491 | cmd_sun_tool = ./gyp-sun-tool $(4) $< "$@" |
| 492 | 492 | """ |
| 493 | 493 | |
| | 494 | SHARED_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. |
| | 498 | quiet_cmd_haiku_tool = HAIKUTOOL $(4) $< |
| | 499 | cmd_haiku_tool = ./gyp-haiku-tool $(4) $< "$@" |
| | 500 | """ |
| 494 | 501 | |
| 495 | 502 | def WriteRootHeaderSuffixRules(writer): |
| 496 | 503 | extensions = sorted(COMPILABLE_EXTENSIONS.keys(), key=str.lower) |
| … |
… |
|
| 2027 | 2034 | header_params.update({ |
| 2028 | 2035 | 'flock': 'lockf', |
| 2029 | 2036 | }) |
| | 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 | |
| 2030 | 2044 | |
| 2031 | 2045 | header_params.update(RunSystemTests(flavor)) |
| 2032 | 2046 | header_params.update({ |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| | 7 | generator.""" |
| | 8 | |
| | 9 | import fcntl |
| | 10 | import os |
| | 11 | import struct |
| | 12 | import subprocess |
| | 13 | import sys |
| | 14 | |
| | 15 | |
| | 16 | def main(args): |
| | 17 | executor = HaikuTool() |
| | 18 | executor.Dispatch(args) |
| | 19 | |
| | 20 | |
| | 21 | class 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 | |
| | 48 | if __name__ == '__main__': |
| | 49 | sys.exit(main(sys.argv[1:])) |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
diff -Naur gyp/setup.py gyp-haiku/setup.py
|
old
|
new
|
|
| 1 | | #!/usr/bin/env python |
| | 1 | #!/boot/common/bin/python |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 | |
| 2 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 3 | 2 | |
| 4 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 5 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| … |
… |
|
| 38 | 38 | test.must_contain_any_line(test.stderr(), |
| 39 | 39 | ["Missing input files:"]) |
| 40 | 40 | |
| 41 | | test.pass_test() |
| 42 | | No newline at end of file |
| | 41 | test.pass_test() |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 | |
| 2 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | 5 | # found in the LICENSE file. |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2010 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
diff -Naur gyp/tools/graphviz.py gyp-haiku/tools/graphviz.py
|
old
|
new
|
|
| 1 | | #!/usr/bin/env python |
| | 1 | #!/boot/common/bin/python |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
-
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 |
| 2 | 2 | |
| 3 | 3 | # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 | 4 | # Use of this source code is governed by a BSD-style license that can be |