libv8 3.10.8.0 → 3.11.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (215) hide show
  1. data/Rakefile +10 -3
  2. data/ext/libv8/compiler.rb +46 -0
  3. data/ext/libv8/extconf.rb +5 -1
  4. data/ext/libv8/make.rb +13 -0
  5. data/lib/libv8/version.rb +1 -1
  6. data/patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch +11 -0
  7. data/patches/src_platform-freebsd.cc.patch +10 -0
  8. data/vendor/v8/ChangeLog +124 -0
  9. data/vendor/v8/DEPS +27 -0
  10. data/vendor/v8/Makefile +7 -0
  11. data/vendor/v8/SConstruct +15 -2
  12. data/vendor/v8/build/common.gypi +129 -157
  13. data/vendor/v8/build/gyp_v8 +11 -25
  14. data/vendor/v8/build/standalone.gypi +9 -3
  15. data/vendor/v8/include/v8.h +5 -3
  16. data/vendor/v8/src/SConscript +1 -0
  17. data/vendor/v8/src/api.cc +4 -33
  18. data/vendor/v8/src/api.h +2 -2
  19. data/vendor/v8/src/arm/builtins-arm.cc +5 -4
  20. data/vendor/v8/src/arm/code-stubs-arm.cc +21 -14
  21. data/vendor/v8/src/arm/codegen-arm.cc +2 -2
  22. data/vendor/v8/src/arm/debug-arm.cc +3 -1
  23. data/vendor/v8/src/arm/full-codegen-arm.cc +3 -102
  24. data/vendor/v8/src/arm/ic-arm.cc +30 -33
  25. data/vendor/v8/src/arm/lithium-arm.cc +20 -7
  26. data/vendor/v8/src/arm/lithium-arm.h +10 -4
  27. data/vendor/v8/src/arm/lithium-codegen-arm.cc +106 -60
  28. data/vendor/v8/src/arm/macro-assembler-arm.cc +49 -39
  29. data/vendor/v8/src/arm/macro-assembler-arm.h +5 -4
  30. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +115 -55
  31. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +7 -6
  32. data/vendor/v8/src/arm/simulator-arm.h +6 -6
  33. data/vendor/v8/src/arm/stub-cache-arm.cc +64 -19
  34. data/vendor/v8/src/array.js +7 -3
  35. data/vendor/v8/src/ast.cc +11 -6
  36. data/vendor/v8/src/bootstrapper.cc +9 -11
  37. data/vendor/v8/src/builtins.cc +61 -31
  38. data/vendor/v8/src/code-stubs.cc +23 -9
  39. data/vendor/v8/src/code-stubs.h +1 -0
  40. data/vendor/v8/src/codegen.h +3 -3
  41. data/vendor/v8/src/compiler.cc +1 -1
  42. data/vendor/v8/src/contexts.h +2 -18
  43. data/vendor/v8/src/d8.cc +94 -93
  44. data/vendor/v8/src/d8.h +1 -1
  45. data/vendor/v8/src/debug-agent.cc +3 -3
  46. data/vendor/v8/src/debug.cc +41 -1
  47. data/vendor/v8/src/debug.h +50 -0
  48. data/vendor/v8/src/elements-kind.cc +134 -0
  49. data/vendor/v8/src/elements-kind.h +210 -0
  50. data/vendor/v8/src/elements.cc +356 -190
  51. data/vendor/v8/src/elements.h +36 -28
  52. data/vendor/v8/src/factory.cc +44 -4
  53. data/vendor/v8/src/factory.h +11 -7
  54. data/vendor/v8/src/flag-definitions.h +3 -0
  55. data/vendor/v8/src/frames.h +3 -0
  56. data/vendor/v8/src/full-codegen.cc +2 -1
  57. data/vendor/v8/src/func-name-inferrer.h +2 -0
  58. data/vendor/v8/src/globals.h +3 -0
  59. data/vendor/v8/src/heap-inl.h +16 -4
  60. data/vendor/v8/src/heap.cc +38 -32
  61. data/vendor/v8/src/heap.h +3 -17
  62. data/vendor/v8/src/hydrogen-instructions.cc +28 -5
  63. data/vendor/v8/src/hydrogen-instructions.h +142 -44
  64. data/vendor/v8/src/hydrogen.cc +160 -55
  65. data/vendor/v8/src/hydrogen.h +2 -0
  66. data/vendor/v8/src/ia32/assembler-ia32.h +3 -0
  67. data/vendor/v8/src/ia32/builtins-ia32.cc +5 -4
  68. data/vendor/v8/src/ia32/code-stubs-ia32.cc +22 -16
  69. data/vendor/v8/src/ia32/codegen-ia32.cc +2 -2
  70. data/vendor/v8/src/ia32/debug-ia32.cc +29 -2
  71. data/vendor/v8/src/ia32/full-codegen-ia32.cc +8 -101
  72. data/vendor/v8/src/ia32/ic-ia32.cc +23 -19
  73. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +126 -80
  74. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +2 -1
  75. data/vendor/v8/src/ia32/lithium-ia32.cc +15 -9
  76. data/vendor/v8/src/ia32/lithium-ia32.h +14 -6
  77. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +50 -40
  78. data/vendor/v8/src/ia32/macro-assembler-ia32.h +5 -4
  79. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +113 -43
  80. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +9 -4
  81. data/vendor/v8/src/ia32/simulator-ia32.h +4 -4
  82. data/vendor/v8/src/ia32/stub-cache-ia32.cc +52 -14
  83. data/vendor/v8/src/ic.cc +77 -20
  84. data/vendor/v8/src/ic.h +18 -2
  85. data/vendor/v8/src/incremental-marking-inl.h +21 -5
  86. data/vendor/v8/src/incremental-marking.cc +35 -8
  87. data/vendor/v8/src/incremental-marking.h +12 -3
  88. data/vendor/v8/src/isolate.cc +12 -2
  89. data/vendor/v8/src/isolate.h +1 -1
  90. data/vendor/v8/src/jsregexp.cc +66 -26
  91. data/vendor/v8/src/jsregexp.h +60 -31
  92. data/vendor/v8/src/list-inl.h +8 -0
  93. data/vendor/v8/src/list.h +3 -0
  94. data/vendor/v8/src/lithium.cc +5 -2
  95. data/vendor/v8/src/liveedit.cc +57 -5
  96. data/vendor/v8/src/mark-compact-inl.h +17 -11
  97. data/vendor/v8/src/mark-compact.cc +100 -143
  98. data/vendor/v8/src/mark-compact.h +44 -20
  99. data/vendor/v8/src/messages.js +131 -99
  100. data/vendor/v8/src/mips/builtins-mips.cc +5 -4
  101. data/vendor/v8/src/mips/code-stubs-mips.cc +23 -15
  102. data/vendor/v8/src/mips/codegen-mips.cc +2 -2
  103. data/vendor/v8/src/mips/debug-mips.cc +3 -1
  104. data/vendor/v8/src/mips/full-codegen-mips.cc +4 -102
  105. data/vendor/v8/src/mips/ic-mips.cc +34 -36
  106. data/vendor/v8/src/mips/lithium-codegen-mips.cc +116 -68
  107. data/vendor/v8/src/mips/lithium-mips.cc +20 -7
  108. data/vendor/v8/src/mips/lithium-mips.h +11 -4
  109. data/vendor/v8/src/mips/macro-assembler-mips.cc +50 -39
  110. data/vendor/v8/src/mips/macro-assembler-mips.h +5 -4
  111. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +110 -50
  112. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +6 -5
  113. data/vendor/v8/src/mips/simulator-mips.h +5 -5
  114. data/vendor/v8/src/mips/stub-cache-mips.cc +66 -20
  115. data/vendor/v8/src/mksnapshot.cc +5 -1
  116. data/vendor/v8/src/objects-debug.cc +103 -6
  117. data/vendor/v8/src/objects-inl.h +215 -116
  118. data/vendor/v8/src/objects-printer.cc +13 -8
  119. data/vendor/v8/src/objects.cc +608 -331
  120. data/vendor/v8/src/objects.h +129 -94
  121. data/vendor/v8/src/parser.cc +16 -4
  122. data/vendor/v8/src/platform-freebsd.cc +1 -0
  123. data/vendor/v8/src/platform-linux.cc +9 -30
  124. data/vendor/v8/src/platform-posix.cc +28 -7
  125. data/vendor/v8/src/platform-win32.cc +15 -3
  126. data/vendor/v8/src/platform.h +2 -1
  127. data/vendor/v8/src/profile-generator-inl.h +25 -2
  128. data/vendor/v8/src/profile-generator.cc +300 -822
  129. data/vendor/v8/src/profile-generator.h +97 -214
  130. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +2 -1
  131. data/vendor/v8/src/regexp-macro-assembler-irregexp.h +2 -2
  132. data/vendor/v8/src/regexp-macro-assembler-tracer.cc +6 -5
  133. data/vendor/v8/src/regexp-macro-assembler-tracer.h +1 -1
  134. data/vendor/v8/src/regexp-macro-assembler.cc +7 -3
  135. data/vendor/v8/src/regexp-macro-assembler.h +10 -2
  136. data/vendor/v8/src/regexp.js +6 -0
  137. data/vendor/v8/src/runtime.cc +265 -212
  138. data/vendor/v8/src/runtime.h +6 -5
  139. data/vendor/v8/src/scopes.cc +20 -0
  140. data/vendor/v8/src/scopes.h +6 -3
  141. data/vendor/v8/src/spaces.cc +0 -2
  142. data/vendor/v8/src/string-stream.cc +2 -2
  143. data/vendor/v8/src/v8-counters.h +0 -2
  144. data/vendor/v8/src/v8natives.js +2 -2
  145. data/vendor/v8/src/v8utils.h +6 -3
  146. data/vendor/v8/src/version.cc +1 -1
  147. data/vendor/v8/src/x64/assembler-x64.h +2 -1
  148. data/vendor/v8/src/x64/builtins-x64.cc +5 -4
  149. data/vendor/v8/src/x64/code-stubs-x64.cc +25 -16
  150. data/vendor/v8/src/x64/codegen-x64.cc +2 -2
  151. data/vendor/v8/src/x64/debug-x64.cc +14 -1
  152. data/vendor/v8/src/x64/disasm-x64.cc +1 -1
  153. data/vendor/v8/src/x64/full-codegen-x64.cc +10 -106
  154. data/vendor/v8/src/x64/ic-x64.cc +20 -16
  155. data/vendor/v8/src/x64/lithium-codegen-x64.cc +156 -79
  156. data/vendor/v8/src/x64/lithium-codegen-x64.h +2 -1
  157. data/vendor/v8/src/x64/lithium-x64.cc +18 -8
  158. data/vendor/v8/src/x64/lithium-x64.h +7 -2
  159. data/vendor/v8/src/x64/macro-assembler-x64.cc +50 -40
  160. data/vendor/v8/src/x64/macro-assembler-x64.h +5 -4
  161. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +122 -51
  162. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +17 -8
  163. data/vendor/v8/src/x64/simulator-x64.h +4 -4
  164. data/vendor/v8/src/x64/stub-cache-x64.cc +55 -17
  165. data/vendor/v8/test/cctest/cctest.status +1 -0
  166. data/vendor/v8/test/cctest/test-api.cc +24 -0
  167. data/vendor/v8/test/cctest/test-func-name-inference.cc +38 -0
  168. data/vendor/v8/test/cctest/test-heap-profiler.cc +21 -77
  169. data/vendor/v8/test/cctest/test-heap.cc +164 -3
  170. data/vendor/v8/test/cctest/test-list.cc +12 -0
  171. data/vendor/v8/test/cctest/test-mark-compact.cc +5 -5
  172. data/vendor/v8/test/cctest/test-regexp.cc +14 -8
  173. data/vendor/v8/test/cctest/testcfg.py +2 -0
  174. data/vendor/v8/test/mjsunit/accessor-map-sharing.js +176 -0
  175. data/vendor/v8/test/mjsunit/array-construct-transition.js +3 -3
  176. data/vendor/v8/test/mjsunit/array-literal-transitions.js +10 -10
  177. data/vendor/v8/test/mjsunit/big-array-literal.js +3 -0
  178. data/vendor/v8/test/mjsunit/compiler/inline-construct.js +4 -2
  179. data/vendor/v8/test/mjsunit/debug-liveedit-stack-padding.js +88 -0
  180. data/vendor/v8/test/mjsunit/elements-kind.js +4 -4
  181. data/vendor/v8/test/mjsunit/elements-transition-hoisting.js +2 -2
  182. data/vendor/v8/test/mjsunit/elements-transition.js +5 -5
  183. data/vendor/v8/test/mjsunit/error-constructors.js +68 -33
  184. data/vendor/v8/test/mjsunit/harmony/proxies.js +14 -6
  185. data/vendor/v8/test/mjsunit/mjsunit.status +1 -0
  186. data/vendor/v8/test/mjsunit/packed-elements.js +112 -0
  187. data/vendor/v8/test/mjsunit/regexp-capture-3.js +6 -0
  188. data/vendor/v8/test/mjsunit/regexp-global.js +132 -0
  189. data/vendor/v8/test/mjsunit/regexp.js +11 -0
  190. data/vendor/v8/test/mjsunit/regress/regress-117409.js +52 -0
  191. data/vendor/v8/test/mjsunit/regress/regress-126412.js +33 -0
  192. data/vendor/v8/test/mjsunit/regress/regress-128018.js +35 -0
  193. data/vendor/v8/test/mjsunit/regress/regress-128146.js +33 -0
  194. data/vendor/v8/test/mjsunit/regress/regress-1639-2.js +4 -1
  195. data/vendor/v8/test/mjsunit/regress/regress-1639.js +14 -8
  196. data/vendor/v8/test/mjsunit/regress/regress-1849.js +3 -3
  197. data/vendor/v8/test/mjsunit/regress/regress-1878.js +2 -2
  198. data/vendor/v8/test/mjsunit/regress/regress-2071.js +79 -0
  199. data/vendor/v8/test/mjsunit/regress/regress-2153.js +32 -0
  200. data/vendor/v8/test/mjsunit/regress/regress-crbug-122271.js +4 -4
  201. data/vendor/v8/test/mjsunit/regress/regress-crbug-126414.js +32 -0
  202. data/vendor/v8/test/mjsunit/regress/regress-smi-only-concat.js +2 -2
  203. data/vendor/v8/test/mjsunit/regress/regress-transcendental.js +49 -0
  204. data/vendor/v8/test/mjsunit/stack-traces.js +14 -0
  205. data/vendor/v8/test/mjsunit/unbox-double-arrays.js +4 -3
  206. data/vendor/v8/test/test262/testcfg.py +6 -1
  207. data/vendor/v8/tools/check-static-initializers.sh +11 -3
  208. data/vendor/v8/tools/fuzz-harness.sh +92 -0
  209. data/vendor/v8/tools/grokdump.py +658 -67
  210. data/vendor/v8/tools/gyp/v8.gyp +21 -39
  211. data/vendor/v8/tools/js2c.py +3 -3
  212. data/vendor/v8/tools/jsmin.py +2 -2
  213. data/vendor/v8/tools/presubmit.py +2 -1
  214. data/vendor/v8/tools/test-wrapper-gypbuild.py +25 -11
  215. metadata +624 -612
@@ -58,31 +58,22 @@
58
58
  # has some sources to link into the component.
59
59
  '../../src/v8dll-main.cc',
60
60
  ],
61
+ 'defines': [
62
+ 'V8_SHARED',
63
+ 'BUILDING_V8_SHARED',
64
+ ],
65
+ 'direct_dependent_settings': {
66
+ 'defines': [
67
+ 'V8_SHARED',
68
+ 'USING_V8_SHARED',
69
+ ],
70
+ },
61
71
  'conditions': [
62
72
  ['OS=="mac"', {
63
73
  'xcode_settings': {
64
74
  'OTHER_LDFLAGS': ['-dynamiclib', '-all_load']
65
75
  },
66
76
  }],
67
- ['OS=="win"', {
68
- 'defines': [
69
- 'BUILDING_V8_SHARED',
70
- ],
71
- 'direct_dependent_settings': {
72
- 'defines': [
73
- 'USING_V8_SHARED',
74
- ],
75
- },
76
- }, {
77
- 'defines': [
78
- 'V8_SHARED',
79
- ],
80
- 'direct_dependent_settings': {
81
- 'defines': [
82
- 'V8_SHARED',
83
- ],
84
- },
85
- }],
86
77
  ['soname_version!=""', {
87
78
  'product_extension': 'so.<(soname_version)',
88
79
  }],
@@ -110,27 +101,16 @@
110
101
  'dependencies': ['mksnapshot', 'js2c'],
111
102
  }],
112
103
  ['component=="shared_library"', {
113
- 'conditions': [
114
- ['OS=="win"', {
115
- 'defines': [
116
- 'BUILDING_V8_SHARED',
117
- ],
118
- 'direct_dependent_settings': {
119
- 'defines': [
120
- 'USING_V8_SHARED',
121
- ],
122
- },
123
- }, {
124
- 'defines': [
125
- 'V8_SHARED',
126
- ],
127
- 'direct_dependent_settings': {
128
- 'defines': [
129
- 'V8_SHARED',
130
- ],
131
- },
132
- }],
104
+ 'defines': [
105
+ 'V8_SHARED',
106
+ 'BUILDING_V8_SHARED',
133
107
  ],
108
+ 'direct_dependent_settings': {
109
+ 'defines': [
110
+ 'V8_SHARED',
111
+ 'USING_V8_SHARED',
112
+ ],
113
+ },
134
114
  }],
135
115
  ],
136
116
  'dependencies': [
@@ -315,6 +295,8 @@
315
295
  '../../src/dtoa.h',
316
296
  '../../src/elements.cc',
317
297
  '../../src/elements.h',
298
+ '../../src/elements-kind.cc',
299
+ '../../src/elements-kind.h',
318
300
  '../../src/execution.cc',
319
301
  '../../src/execution.h',
320
302
  '../../src/factory.cc',
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  #
3
- # Copyright 2006-2008 the V8 project authors. All rights reserved.
3
+ # Copyright 2012 the V8 project authors. All rights reserved.
4
4
  # Redistribution and use in source and binary forms, with or without
5
5
  # modification, are permitted provided that the following conditions are
6
6
  # met:
@@ -195,14 +195,14 @@ def ReadMacros(lines):
195
195
  macro_match = MACRO_PATTERN.match(line)
196
196
  if macro_match:
197
197
  name = macro_match.group(1)
198
- args = map(string.strip, macro_match.group(2).split(','))
198
+ args = [match.strip() for match in macro_match.group(2).split(',')]
199
199
  body = macro_match.group(3).strip()
200
200
  macros.append((re.compile("\\b%s\\(" % name), TextMacro(args, body)))
201
201
  else:
202
202
  python_match = PYTHON_MACRO_PATTERN.match(line)
203
203
  if python_match:
204
204
  name = python_match.group(1)
205
- args = map(string.strip, python_match.group(2).split(','))
205
+ args = [match.strip() for match in python_match.group(2).split(',')]
206
206
  body = python_match.group(3).strip()
207
207
  fun = eval("lambda " + ",".join(args) + ': ' + body)
208
208
  macros.append((re.compile("\\b%s\\(" % name), PythonMacro(args, fun)))
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/python2.4
2
2
 
3
- # Copyright 2009 the V8 project authors. All rights reserved.
3
+ # Copyright 2012 the V8 project authors. All rights reserved.
4
4
  # Redistribution and use in source and binary forms, with or without
5
5
  # modification, are permitted provided that the following conditions are
6
6
  # met:
@@ -154,7 +154,7 @@ class JavaScriptMinifier(object):
154
154
  return var_name
155
155
  while True:
156
156
  identifier_first_char = self.identifier_counter % 52
157
- identifier_second_char = self.identifier_counter / 52
157
+ identifier_second_char = self.identifier_counter // 52
158
158
  new_identifier = self.CharFromNumber(identifier_first_char)
159
159
  if identifier_second_char != 0:
160
160
  new_identifier = (
@@ -303,7 +303,8 @@ class SourceProcessor(SourceFileProcessor):
303
303
  or (name == 'third_party')
304
304
  or (name == 'gyp')
305
305
  or (name == 'out')
306
- or (name == 'obj'))
306
+ or (name == 'obj')
307
+ or (name == 'DerivedSources'))
307
308
 
308
309
  IGNORE_COPYRIGHTS = ['cpplint.py',
309
310
  'earley-boyer.js',
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  #
3
- # Copyright 2011 the V8 project authors. All rights reserved.
3
+ # Copyright 2012 the V8 project authors. All rights reserved.
4
4
  # Redistribution and use in source and binary forms, with or without
5
5
  # modification, are permitted provided that the following conditions are
6
6
  # met:
@@ -56,6 +56,9 @@ def BuildOptions():
56
56
  result.add_option("--no-presubmit",
57
57
  help='Skip presubmit checks',
58
58
  default=False, action="store_true")
59
+ result.add_option("--buildbot",
60
+ help='Adapt to path structure used on buildbots',
61
+ default=False, action="store_true")
59
62
 
60
63
  # Flags this wrapper script handles itself:
61
64
  result.add_option("-m", "--mode",
@@ -144,14 +147,16 @@ def ProcessOptions(options):
144
147
  options.mode = options.mode.split(',')
145
148
  options.arch = options.arch.split(',')
146
149
  for mode in options.mode:
147
- if not mode in ['debug', 'release']:
150
+ if not mode.lower() in ['debug', 'release']:
148
151
  print "Unknown mode %s" % mode
149
152
  return False
150
153
  for arch in options.arch:
151
154
  if not arch in ['ia32', 'x64', 'arm', 'mips']:
152
155
  print "Unknown architecture %s" % arch
153
156
  return False
154
-
157
+ if options.buildbot:
158
+ # Buildbots run presubmit tests as a separate step.
159
+ options.no_presubmit = True
155
160
  return True
156
161
 
157
162
 
@@ -213,28 +218,37 @@ def Main():
213
218
  return 1
214
219
 
215
220
  workspace = abspath(join(dirname(sys.argv[0]), '..'))
221
+ returncodes = 0
216
222
 
217
223
  if not options.no_presubmit:
218
224
  print ">>> running presubmit tests"
219
- subprocess.call([workspace + '/tools/presubmit.py'])
225
+ returncodes += subprocess.call([workspace + '/tools/presubmit.py'])
220
226
 
221
- args_for_children = [workspace + '/tools/test.py'] + PassOnOptions(options)
227
+ args_for_children = ['python']
228
+ args_for_children += [workspace + '/tools/test.py'] + PassOnOptions(options)
222
229
  args_for_children += ['--no-build', '--build-system=gyp']
223
230
  for arg in args:
224
231
  args_for_children += [arg]
225
- returncodes = 0
226
232
  env = os.environ
227
233
 
228
234
  for mode in options.mode:
229
235
  for arch in options.arch:
230
236
  print ">>> running tests for %s.%s" % (arch, mode)
231
- shellpath = workspace + '/' + options.outdir + '/' + arch + '.' + mode
237
+ if options.buildbot:
238
+ shellpath = workspace + '/' + options.outdir + '/' + mode
239
+ mode = mode.lower()
240
+ else:
241
+ shellpath = workspace + '/' + options.outdir + '/' + arch + '.' + mode
232
242
  env['LD_LIBRARY_PATH'] = shellpath + '/lib.target'
233
243
  shell = shellpath + "/d8"
234
- child = subprocess.Popen(' '.join(args_for_children +
235
- ['--arch=' + arch] +
236
- ['--mode=' + mode] +
237
- ['--shell=' + shell]),
244
+ cmdline = ' '.join(args_for_children +
245
+ ['--arch=' + arch] +
246
+ ['--mode=' + mode] +
247
+ ['--shell=' + shell])
248
+ # TODO(jkummerow): This print is temporary.
249
+ print "Executing: %s" % cmdline
250
+
251
+ child = subprocess.Popen(cmdline,
238
252
  shell=True,
239
253
  cwd=workspace,
240
254
  env=env)
metadata CHANGED
@@ -1,77 +1,73 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
- version: !ruby/object:Gem::Version
4
- hash: 2379409338323863234
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.11.8.0
5
5
  prerelease:
6
- segments:
7
- - 3
8
- - 10
9
- - 8
10
- - 0
11
- version: 3.10.8.0
12
6
  platform: ruby
13
- authors:
7
+ authors:
14
8
  - Charles Lowell
15
9
  autorequire:
16
10
  bindir: bin
17
11
  cert_chain: []
18
-
19
- date: 2012-05-11 00:00:00 Z
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
22
- type: :development
12
+ date: 2012-06-15 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
23
15
  name: rake
24
- prerelease: false
25
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
26
17
  none: false
27
- requirements:
18
+ requirements:
28
19
  - - ~>
29
- - !ruby/object:Gem::Version
30
- hash: 418409104216488254
31
- segments:
32
- - 0
33
- - 9
34
- - 2
20
+ - !ruby/object:Gem::Version
35
21
  version: 0.9.2
36
- version_requirements: *id001
37
- - !ruby/object:Gem::Dependency
38
22
  type: :development
39
- name: rake-compiler
40
23
  prerelease: false
41
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.9.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake-compiler
32
+ requirement: !ruby/object:Gem::Requirement
42
33
  none: false
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- hash: 2002549777813010636
47
- segments:
48
- - 0
49
- version: "0"
50
- version_requirements: *id002
51
- - !ruby/object:Gem::Dependency
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
52
38
  type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
53
47
  name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
54
55
  prerelease: false
55
- requirement: &id003 !ruby/object:Gem::Requirement
56
+ version_requirements: !ruby/object:Gem::Requirement
56
57
  none: false
57
- requirements:
58
- - - ">="
59
- - !ruby/object:Gem::Version
60
- hash: 2002549777813010636
61
- segments:
62
- - 0
63
- version: "0"
64
- version_requirements: *id003
65
- description: Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer
66
- email:
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: Distributes the V8 JavaScript engine in binary and source forms in order
63
+ to support fast builds of The Ruby Racer
64
+ email:
67
65
  - cowboyd@thefrontside.net
68
66
  executables: []
69
-
70
- extensions:
67
+ extensions:
71
68
  - ext/libv8/extconf.rb
72
69
  extra_rdoc_files: []
73
-
74
- files:
70
+ files:
75
71
  - .gitignore
76
72
  - .gitmodules
77
73
  - .travis.yml
@@ -79,17 +75,22 @@ files:
79
75
  - README.md
80
76
  - Rakefile
81
77
  - ext/libv8/arch.rb
78
+ - ext/libv8/compiler.rb
82
79
  - ext/libv8/extconf.rb
80
+ - ext/libv8/make.rb
83
81
  - lib/libv8.rb
84
82
  - lib/libv8/fpic-on-freebsd-amd64.patch
85
83
  - lib/libv8/version.rb
86
84
  - libv8.gemspec
85
+ - patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch
86
+ - patches/src_platform-freebsd.cc.patch
87
87
  - spec/libv8_spec.rb
88
88
  - spec/spec_helper.rb
89
89
  - thefrontside.png
90
90
  - vendor/v8/.gitignore
91
91
  - vendor/v8/AUTHORS
92
92
  - vendor/v8/ChangeLog
93
+ - vendor/v8/DEPS
93
94
  - vendor/v8/LICENSE
94
95
  - vendor/v8/LICENSE.strongtalk
95
96
  - vendor/v8/LICENSE.v8
@@ -261,6 +262,8 @@ files:
261
262
  - vendor/v8/src/double.h
262
263
  - vendor/v8/src/dtoa.cc
263
264
  - vendor/v8/src/dtoa.h
265
+ - vendor/v8/src/elements-kind.cc
266
+ - vendor/v8/src/elements-kind.h
264
267
  - vendor/v8/src/elements.cc
265
268
  - vendor/v8/src/elements.h
266
269
  - vendor/v8/src/execution.cc
@@ -692,6 +695,7 @@ files:
692
695
  - vendor/v8/test/message/try-finally-throw-in-try-and-finally.out
693
696
  - vendor/v8/test/message/try-finally-throw-in-try.js
694
697
  - vendor/v8/test/message/try-finally-throw-in-try.out
698
+ - vendor/v8/test/mjsunit/accessor-map-sharing.js
695
699
  - vendor/v8/test/mjsunit/accessors-on-global-object.js
696
700
  - vendor/v8/test/mjsunit/api-call-after-bypassed-exception.js
697
701
  - vendor/v8/test/mjsunit/apply-arguments-gc-safepoint.js
@@ -929,6 +933,7 @@ files:
929
933
  - vendor/v8/test/mjsunit/debug-liveedit-newsource.js
930
934
  - vendor/v8/test/mjsunit/debug-liveedit-patch-positions-replace.js
931
935
  - vendor/v8/test/mjsunit/debug-liveedit-patch-positions.js
936
+ - vendor/v8/test/mjsunit/debug-liveedit-stack-padding.js
932
937
  - vendor/v8/test/mjsunit/debug-liveedit-utils.js
933
938
  - vendor/v8/test/mjsunit/debug-mirror-cache.js
934
939
  - vendor/v8/test/mjsunit/debug-multiple-breakpoints.js
@@ -1136,6 +1141,7 @@ files:
1136
1141
  - vendor/v8/test/mjsunit/object-toprimitive.js
1137
1142
  - vendor/v8/test/mjsunit/optimized-typeof.js
1138
1143
  - vendor/v8/test/mjsunit/override-read-only-property.js
1144
+ - vendor/v8/test/mjsunit/packed-elements.js
1139
1145
  - vendor/v8/test/mjsunit/parse-int-float.js
1140
1146
  - vendor/v8/test/mjsunit/pixel-array-rounding.js
1141
1147
  - vendor/v8/test/mjsunit/polymorph-arrays.js
@@ -1151,6 +1157,7 @@ files:
1151
1157
  - vendor/v8/test/mjsunit/regexp-capture.js
1152
1158
  - vendor/v8/test/mjsunit/regexp-captures.js
1153
1159
  - vendor/v8/test/mjsunit/regexp-compile.js
1160
+ - vendor/v8/test/mjsunit/regexp-global.js
1154
1161
  - vendor/v8/test/mjsunit/regexp-indexof.js
1155
1162
  - vendor/v8/test/mjsunit/regexp-lookahead.js
1156
1163
  - vendor/v8/test/mjsunit/regexp-loop-capture.js
@@ -1225,6 +1232,7 @@ files:
1225
1232
  - vendor/v8/test/mjsunit/regress/regress-1172.js
1226
1233
  - vendor/v8/test/mjsunit/regress/regress-1173979.js
1227
1234
  - vendor/v8/test/mjsunit/regress/regress-1174.js
1235
+ - vendor/v8/test/mjsunit/regress/regress-117409.js
1228
1236
  - vendor/v8/test/mjsunit/regress/regress-1175390.js
1229
1237
  - vendor/v8/test/mjsunit/regress/regress-1176.js
1230
1238
  - vendor/v8/test/mjsunit/regress/regress-1177518.js
@@ -1269,7 +1277,10 @@ files:
1269
1277
  - vendor/v8/test/mjsunit/regress/regress-1254366.js
1270
1278
  - vendor/v8/test/mjsunit/regress/regress-125515.js
1271
1279
  - vendor/v8/test/mjsunit/regress/regress-1257.js
1280
+ - vendor/v8/test/mjsunit/regress/regress-126412.js
1272
1281
  - vendor/v8/test/mjsunit/regress/regress-1278.js
1282
+ - vendor/v8/test/mjsunit/regress/regress-128018.js
1283
+ - vendor/v8/test/mjsunit/regress/regress-128146.js
1273
1284
  - vendor/v8/test/mjsunit/regress/regress-1309.js
1274
1285
  - vendor/v8/test/mjsunit/regress/regress-1323.js
1275
1286
  - vendor/v8/test/mjsunit/regress/regress-1327557.js
@@ -1359,7 +1370,9 @@ files:
1359
1370
  - vendor/v8/test/mjsunit/regress/regress-2055.js
1360
1371
  - vendor/v8/test/mjsunit/regress/regress-2056.js
1361
1372
  - vendor/v8/test/mjsunit/regress/regress-2058.js
1373
+ - vendor/v8/test/mjsunit/regress/regress-2071.js
1362
1374
  - vendor/v8/test/mjsunit/regress/regress-2110.js
1375
+ - vendor/v8/test/mjsunit/regress/regress-2153.js
1363
1376
  - vendor/v8/test/mjsunit/regress/regress-219.js
1364
1377
  - vendor/v8/test/mjsunit/regress/regress-220.js
1365
1378
  - vendor/v8/test/mjsunit/regress/regress-2249423.js
@@ -1535,6 +1548,7 @@ files:
1535
1548
  - vendor/v8/test/mjsunit/regress/regress-crbug-107996.js
1536
1549
  - vendor/v8/test/mjsunit/regress/regress-crbug-119926.js
1537
1550
  - vendor/v8/test/mjsunit/regress/regress-crbug-122271.js
1551
+ - vendor/v8/test/mjsunit/regress/regress-crbug-126414.js
1538
1552
  - vendor/v8/test/mjsunit/regress/regress-crbug-18639.js
1539
1553
  - vendor/v8/test/mjsunit/regress/regress-crbug-3184.js
1540
1554
  - vendor/v8/test/mjsunit/regress/regress-crbug-37853.js
@@ -1558,6 +1572,7 @@ files:
1558
1572
  - vendor/v8/test/mjsunit/regress/regress-smi-only-concat.js
1559
1573
  - vendor/v8/test/mjsunit/regress/regress-sqrt.js
1560
1574
  - vendor/v8/test/mjsunit/regress/regress-swapelements.js
1575
+ - vendor/v8/test/mjsunit/regress/regress-transcendental.js
1561
1576
  - vendor/v8/test/mjsunit/regress/short-circuit.js
1562
1577
  - vendor/v8/test/mjsunit/regress/splice-missing-wb.js
1563
1578
  - vendor/v8/test/mjsunit/samevalue.js
@@ -1710,6 +1725,7 @@ files:
1710
1725
  - vendor/v8/tools/csvparser.js
1711
1726
  - vendor/v8/tools/disasm.py
1712
1727
  - vendor/v8/tools/freebsd-tick-processor
1728
+ - vendor/v8/tools/fuzz-harness.sh
1713
1729
  - vendor/v8/tools/gc-nvp-trace-processor.py
1714
1730
  - vendor/v8/tools/gcmole/Makefile
1715
1731
  - vendor/v8/tools/gcmole/README
@@ -1749,6 +1765,7 @@ files:
1749
1765
  - vendor/v8/tools/visual_studio/README.txt
1750
1766
  - vendor/v8/tools/windows-tick-processor.bat
1751
1767
  - vendor/v8/build/gyp/AUTHORS
1768
+ - vendor/v8/build/gyp/buildbot/buildbot_run.py
1752
1769
  - vendor/v8/build/gyp/codereview.settings
1753
1770
  - vendor/v8/build/gyp/DEPS
1754
1771
  - vendor/v8/build/gyp/gyp
@@ -1759,36 +1776,146 @@ files:
1759
1776
  - vendor/v8/build/gyp/MANIFEST
1760
1777
  - vendor/v8/build/gyp/OWNERS
1761
1778
  - vendor/v8/build/gyp/PRESUBMIT.py
1779
+ - vendor/v8/build/gyp/pylib/gyp/__init__.py
1780
+ - vendor/v8/build/gyp/pylib/gyp/common.py
1781
+ - vendor/v8/build/gyp/pylib/gyp/easy_xml.py
1782
+ - vendor/v8/build/gyp/pylib/gyp/easy_xml_test.py
1783
+ - vendor/v8/build/gyp/pylib/gyp/generator/__init__.py
1784
+ - vendor/v8/build/gyp/pylib/gyp/generator/dump_dependency_json.py
1785
+ - vendor/v8/build/gyp/pylib/gyp/generator/gypd.py
1786
+ - vendor/v8/build/gyp/pylib/gyp/generator/gypsh.py
1787
+ - vendor/v8/build/gyp/pylib/gyp/generator/make.py
1788
+ - vendor/v8/build/gyp/pylib/gyp/generator/msvs.py
1789
+ - vendor/v8/build/gyp/pylib/gyp/generator/msvs_test.py
1790
+ - vendor/v8/build/gyp/pylib/gyp/generator/ninja.py
1791
+ - vendor/v8/build/gyp/pylib/gyp/generator/ninja_test.py
1792
+ - vendor/v8/build/gyp/pylib/gyp/generator/scons.py
1793
+ - vendor/v8/build/gyp/pylib/gyp/generator/xcode.py
1794
+ - vendor/v8/build/gyp/pylib/gyp/input.py
1795
+ - vendor/v8/build/gyp/pylib/gyp/mac_tool.py
1796
+ - vendor/v8/build/gyp/pylib/gyp/msvs_emulation.py
1797
+ - vendor/v8/build/gyp/pylib/gyp/MSVSNew.py
1798
+ - vendor/v8/build/gyp/pylib/gyp/MSVSProject.py
1799
+ - vendor/v8/build/gyp/pylib/gyp/MSVSSettings.py
1800
+ - vendor/v8/build/gyp/pylib/gyp/MSVSSettings_test.py
1801
+ - vendor/v8/build/gyp/pylib/gyp/MSVSToolFile.py
1802
+ - vendor/v8/build/gyp/pylib/gyp/MSVSUserFile.py
1803
+ - vendor/v8/build/gyp/pylib/gyp/MSVSVersion.py
1804
+ - vendor/v8/build/gyp/pylib/gyp/ninja_syntax.py
1805
+ - vendor/v8/build/gyp/pylib/gyp/SCons.py
1806
+ - vendor/v8/build/gyp/pylib/gyp/sun_tool.py
1807
+ - vendor/v8/build/gyp/pylib/gyp/system_test.py
1808
+ - vendor/v8/build/gyp/pylib/gyp/win_tool.py
1809
+ - vendor/v8/build/gyp/pylib/gyp/xcode_emulation.py
1810
+ - vendor/v8/build/gyp/pylib/gyp/xcodeproj_file.py
1811
+ - vendor/v8/build/gyp/pylib/gyp/xml_fix.py
1762
1812
  - vendor/v8/build/gyp/pylintrc
1763
- - vendor/v8/build/gyp/setup.py
1764
- - vendor/v8/build/gyp/buildbot/buildbot_run.py
1765
1813
  - vendor/v8/build/gyp/samples/samples
1766
1814
  - vendor/v8/build/gyp/samples/samples.bat
1767
- - vendor/v8/build/gyp/tools/graphviz.py
1768
- - vendor/v8/build/gyp/tools/pretty_gyp.py
1769
- - vendor/v8/build/gyp/tools/pretty_sln.py
1770
- - vendor/v8/build/gyp/tools/pretty_vcproj.py
1771
- - vendor/v8/build/gyp/tools/README
1772
- - vendor/v8/build/gyp/tools/Xcode/README
1773
- - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.pbfilespec
1774
- - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.xclangspec
1815
+ - vendor/v8/build/gyp/setup.py
1775
1816
  - vendor/v8/build/gyp/test/actions/gyptest-all.py
1776
1817
  - vendor/v8/build/gyp/test/actions/gyptest-default.py
1777
1818
  - vendor/v8/build/gyp/test/actions/gyptest-errors.py
1819
+ - vendor/v8/build/gyp/test/actions/src/action_missing_name.gyp
1820
+ - vendor/v8/build/gyp/test/actions/src/actions.gyp
1821
+ - vendor/v8/build/gyp/test/actions/src/confirm-dep-files.py
1822
+ - vendor/v8/build/gyp/test/actions/src/subdir1/counter.py
1823
+ - vendor/v8/build/gyp/test/actions/src/subdir1/executable.gyp
1824
+ - vendor/v8/build/gyp/test/actions/src/subdir1/make-prog1.py
1825
+ - vendor/v8/build/gyp/test/actions/src/subdir1/make-prog2.py
1826
+ - vendor/v8/build/gyp/test/actions/src/subdir1/program.c
1827
+ - vendor/v8/build/gyp/test/actions/src/subdir2/make-file.py
1828
+ - vendor/v8/build/gyp/test/actions/src/subdir2/none.gyp
1829
+ - vendor/v8/build/gyp/test/actions/src/subdir3/generate_main.py
1830
+ - vendor/v8/build/gyp/test/actions/src/subdir3/null_input.gyp
1778
1831
  - vendor/v8/build/gyp/test/actions-bare/gyptest-bare.py
1832
+ - vendor/v8/build/gyp/test/actions-bare/src/bare.gyp
1833
+ - vendor/v8/build/gyp/test/actions-bare/src/bare.py
1779
1834
  - vendor/v8/build/gyp/test/actions-multiple/gyptest-all.py
1835
+ - vendor/v8/build/gyp/test/actions-multiple/src/actions.gyp
1836
+ - vendor/v8/build/gyp/test/actions-multiple/src/copy.py
1837
+ - vendor/v8/build/gyp/test/actions-multiple/src/filter.py
1838
+ - vendor/v8/build/gyp/test/actions-multiple/src/foo.c
1839
+ - vendor/v8/build/gyp/test/actions-multiple/src/input.txt
1840
+ - vendor/v8/build/gyp/test/actions-multiple/src/main.c
1780
1841
  - vendor/v8/build/gyp/test/actions-subdir/gyptest-action.py
1842
+ - vendor/v8/build/gyp/test/actions-subdir/src/make-file.py
1843
+ - vendor/v8/build/gyp/test/actions-subdir/src/none.gyp
1844
+ - vendor/v8/build/gyp/test/actions-subdir/src/subdir/make-subdir-file.py
1845
+ - vendor/v8/build/gyp/test/actions-subdir/src/subdir/subdir.gyp
1781
1846
  - vendor/v8/build/gyp/test/additional-targets/gyptest-additional.py
1847
+ - vendor/v8/build/gyp/test/additional-targets/src/all.gyp
1848
+ - vendor/v8/build/gyp/test/additional-targets/src/dir1/actions.gyp
1849
+ - vendor/v8/build/gyp/test/additional-targets/src/dir1/emit.py
1850
+ - vendor/v8/build/gyp/test/additional-targets/src/dir1/lib1.c
1782
1851
  - vendor/v8/build/gyp/test/assembly/gyptest-assembly.py
1852
+ - vendor/v8/build/gyp/test/assembly/src/as.bat
1853
+ - vendor/v8/build/gyp/test/assembly/src/assembly.gyp
1854
+ - vendor/v8/build/gyp/test/assembly/src/lib1.c
1855
+ - vendor/v8/build/gyp/test/assembly/src/lib1.S
1856
+ - vendor/v8/build/gyp/test/assembly/src/program.c
1783
1857
  - vendor/v8/build/gyp/test/builddir/gyptest-all.py
1784
1858
  - vendor/v8/build/gyp/test/builddir/gyptest-default.py
1859
+ - vendor/v8/build/gyp/test/builddir/src/builddir.gypi
1860
+ - vendor/v8/build/gyp/test/builddir/src/func1.c
1861
+ - vendor/v8/build/gyp/test/builddir/src/func2.c
1862
+ - vendor/v8/build/gyp/test/builddir/src/func3.c
1863
+ - vendor/v8/build/gyp/test/builddir/src/func4.c
1864
+ - vendor/v8/build/gyp/test/builddir/src/func5.c
1865
+ - vendor/v8/build/gyp/test/builddir/src/prog1.c
1866
+ - vendor/v8/build/gyp/test/builddir/src/prog1.gyp
1867
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/prog2.c
1868
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/prog2.gyp
1869
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/prog3.c
1870
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp
1871
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c
1872
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp
1873
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c
1874
+ - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp
1785
1875
  - vendor/v8/build/gyp/test/cflags/cflags.c
1786
1876
  - vendor/v8/build/gyp/test/cflags/cflags.gyp
1787
1877
  - vendor/v8/build/gyp/test/cflags/gyptest-cflags.py
1788
1878
  - vendor/v8/build/gyp/test/compilable/gyptest-headers.py
1879
+ - vendor/v8/build/gyp/test/compilable/src/headers.gyp
1880
+ - vendor/v8/build/gyp/test/compilable/src/lib1.cpp
1881
+ - vendor/v8/build/gyp/test/compilable/src/lib1.hpp
1882
+ - vendor/v8/build/gyp/test/compilable/src/program.cpp
1883
+ - vendor/v8/build/gyp/test/configurations/basics/configurations.c
1884
+ - vendor/v8/build/gyp/test/configurations/basics/configurations.gyp
1885
+ - vendor/v8/build/gyp/test/configurations/basics/gyptest-configurations.py
1886
+ - vendor/v8/build/gyp/test/configurations/inheritance/configurations.c
1887
+ - vendor/v8/build/gyp/test/configurations/inheritance/configurations.gyp
1888
+ - vendor/v8/build/gyp/test/configurations/inheritance/gyptest-inheritance.py
1889
+ - vendor/v8/build/gyp/test/configurations/invalid/actions.gyp
1890
+ - vendor/v8/build/gyp/test/configurations/invalid/all_dependent_settings.gyp
1891
+ - vendor/v8/build/gyp/test/configurations/invalid/configurations.gyp
1892
+ - vendor/v8/build/gyp/test/configurations/invalid/dependencies.gyp
1893
+ - vendor/v8/build/gyp/test/configurations/invalid/direct_dependent_settings.gyp
1894
+ - vendor/v8/build/gyp/test/configurations/invalid/gyptest-configurations.py
1895
+ - vendor/v8/build/gyp/test/configurations/invalid/libraries.gyp
1896
+ - vendor/v8/build/gyp/test/configurations/invalid/link_settings.gyp
1897
+ - vendor/v8/build/gyp/test/configurations/invalid/sources.gyp
1898
+ - vendor/v8/build/gyp/test/configurations/invalid/target_name.gyp
1899
+ - vendor/v8/build/gyp/test/configurations/invalid/type.gyp
1900
+ - vendor/v8/build/gyp/test/configurations/target_platform/configurations.gyp
1901
+ - vendor/v8/build/gyp/test/configurations/target_platform/front.c
1902
+ - vendor/v8/build/gyp/test/configurations/target_platform/gyptest-target_platform.py
1903
+ - vendor/v8/build/gyp/test/configurations/target_platform/left.c
1904
+ - vendor/v8/build/gyp/test/configurations/target_platform/right.c
1905
+ - vendor/v8/build/gyp/test/configurations/x64/configurations.c
1906
+ - vendor/v8/build/gyp/test/configurations/x64/configurations.gyp
1907
+ - vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
1789
1908
  - vendor/v8/build/gyp/test/copies/gyptest-all.py
1790
1909
  - vendor/v8/build/gyp/test/copies/gyptest-default.py
1791
1910
  - vendor/v8/build/gyp/test/copies/gyptest-slash.py
1911
+ - vendor/v8/build/gyp/test/copies/src/copies-slash.gyp
1912
+ - vendor/v8/build/gyp/test/copies/src/copies.gyp
1913
+ - vendor/v8/build/gyp/test/copies/src/directory/file3
1914
+ - vendor/v8/build/gyp/test/copies/src/directory/file4
1915
+ - vendor/v8/build/gyp/test/copies/src/directory/subdir/file5
1916
+ - vendor/v8/build/gyp/test/copies/src/file1
1917
+ - vendor/v8/build/gyp/test/copies/src/file2
1918
+ - vendor/v8/build/gyp/test/copies/src/parentdir/subdir/file6
1792
1919
  - vendor/v8/build/gyp/test/cxxflags/cxxflags.cc
1793
1920
  - vendor/v8/build/gyp/test/cxxflags/cxxflags.gyp
1794
1921
  - vendor/v8/build/gyp/test/cxxflags/gyptest-cxxflags.py
@@ -1803,6 +1930,12 @@ files:
1803
1930
  - vendor/v8/build/gyp/test/defines-escaping/defines-escaping.gyp
1804
1931
  - vendor/v8/build/gyp/test/defines-escaping/gyptest-defines-escaping.py
1805
1932
  - vendor/v8/build/gyp/test/dependencies/a.c
1933
+ - vendor/v8/build/gyp/test/dependencies/b/b.c
1934
+ - vendor/v8/build/gyp/test/dependencies/b/b.gyp
1935
+ - vendor/v8/build/gyp/test/dependencies/b/b3.c
1936
+ - vendor/v8/build/gyp/test/dependencies/c/c.c
1937
+ - vendor/v8/build/gyp/test/dependencies/c/c.gyp
1938
+ - vendor/v8/build/gyp/test/dependencies/c/d.c
1806
1939
  - vendor/v8/build/gyp/test/dependencies/extra_targets.gyp
1807
1940
  - vendor/v8/build/gyp/test/dependencies/gyptest-extra-targets.py
1808
1941
  - vendor/v8/build/gyp/test/dependencies/gyptest-lib-only.py
@@ -1811,17 +1944,86 @@ files:
1811
1944
  - vendor/v8/build/gyp/test/dependencies/main.c
1812
1945
  - vendor/v8/build/gyp/test/dependencies/none_traversal.gyp
1813
1946
  - vendor/v8/build/gyp/test/dependency-copy/gyptest-copy.py
1947
+ - vendor/v8/build/gyp/test/dependency-copy/src/copies.gyp
1948
+ - vendor/v8/build/gyp/test/dependency-copy/src/file1.c
1949
+ - vendor/v8/build/gyp/test/dependency-copy/src/file2.c
1814
1950
  - vendor/v8/build/gyp/test/exclusion/exclusion.gyp
1815
1951
  - vendor/v8/build/gyp/test/exclusion/gyptest-exclusion.py
1816
1952
  - vendor/v8/build/gyp/test/exclusion/hello.c
1953
+ - vendor/v8/build/gyp/test/generator-output/actions/actions.gyp
1954
+ - vendor/v8/build/gyp/test/generator-output/actions/build/README.txt
1955
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/actions-out/README.txt
1956
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/build/README.txt
1957
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/executable.gyp
1958
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/make-prog1.py
1959
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/make-prog2.py
1960
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir1/program.c
1961
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir2/actions-out/README.txt
1962
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir2/build/README.txt
1963
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir2/make-file.py
1964
+ - vendor/v8/build/gyp/test/generator-output/actions/subdir2/none.gyp
1965
+ - vendor/v8/build/gyp/test/generator-output/copies/build/README.txt
1966
+ - vendor/v8/build/gyp/test/generator-output/copies/copies-out/README.txt
1967
+ - vendor/v8/build/gyp/test/generator-output/copies/copies.gyp
1968
+ - vendor/v8/build/gyp/test/generator-output/copies/file1
1969
+ - vendor/v8/build/gyp/test/generator-output/copies/file2
1970
+ - vendor/v8/build/gyp/test/generator-output/copies/subdir/build/README.txt
1971
+ - vendor/v8/build/gyp/test/generator-output/copies/subdir/copies-out/README.txt
1972
+ - vendor/v8/build/gyp/test/generator-output/copies/subdir/file3
1973
+ - vendor/v8/build/gyp/test/generator-output/copies/subdir/file4
1974
+ - vendor/v8/build/gyp/test/generator-output/copies/subdir/subdir.gyp
1817
1975
  - vendor/v8/build/gyp/test/generator-output/gyptest-actions.py
1818
1976
  - vendor/v8/build/gyp/test/generator-output/gyptest-copies.py
1819
1977
  - vendor/v8/build/gyp/test/generator-output/gyptest-relocate.py
1820
1978
  - vendor/v8/build/gyp/test/generator-output/gyptest-rules.py
1821
1979
  - vendor/v8/build/gyp/test/generator-output/gyptest-subdir2-deep.py
1822
1980
  - vendor/v8/build/gyp/test/generator-output/gyptest-top-all.py
1981
+ - vendor/v8/build/gyp/test/generator-output/rules/build/README.txt
1982
+ - vendor/v8/build/gyp/test/generator-output/rules/copy-file.py
1983
+ - vendor/v8/build/gyp/test/generator-output/rules/rules.gyp
1984
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/build/README.txt
1985
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/define3.in0
1986
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/define4.in0
1987
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/executable.gyp
1988
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/function1.in1
1989
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/function2.in1
1990
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir1/program.c
1991
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/build/README.txt
1992
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file1.in0
1993
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file2.in0
1994
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file3.in1
1995
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file4.in1
1996
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/none.gyp
1997
+ - vendor/v8/build/gyp/test/generator-output/rules/subdir2/rules-out/README.txt
1998
+ - vendor/v8/build/gyp/test/generator-output/src/build/README.txt
1999
+ - vendor/v8/build/gyp/test/generator-output/src/inc.h
2000
+ - vendor/v8/build/gyp/test/generator-output/src/inc1/include1.h
2001
+ - vendor/v8/build/gyp/test/generator-output/src/prog1.c
2002
+ - vendor/v8/build/gyp/test/generator-output/src/prog1.gyp
2003
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/build/README.txt
2004
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/build/README.txt
2005
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.c
2006
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp
2007
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.h
2008
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/inc2/include2.h
2009
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/prog2.c
2010
+ - vendor/v8/build/gyp/test/generator-output/src/subdir2/prog2.gyp
2011
+ - vendor/v8/build/gyp/test/generator-output/src/subdir3/build/README.txt
2012
+ - vendor/v8/build/gyp/test/generator-output/src/subdir3/inc3/include3.h
2013
+ - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.c
2014
+ - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.gyp
2015
+ - vendor/v8/build/gyp/test/generator-output/src/symroot.gypi
1823
2016
  - vendor/v8/build/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py
1824
2017
  - vendor/v8/build/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py
2018
+ - vendor/v8/build/gyp/test/hard_dependency/src/a.c
2019
+ - vendor/v8/build/gyp/test/hard_dependency/src/a.h
2020
+ - vendor/v8/build/gyp/test/hard_dependency/src/b.c
2021
+ - vendor/v8/build/gyp/test/hard_dependency/src/b.h
2022
+ - vendor/v8/build/gyp/test/hard_dependency/src/c.c
2023
+ - vendor/v8/build/gyp/test/hard_dependency/src/c.h
2024
+ - vendor/v8/build/gyp/test/hard_dependency/src/d.c
2025
+ - vendor/v8/build/gyp/test/hard_dependency/src/emit.py
2026
+ - vendor/v8/build/gyp/test/hard_dependency/src/hard_dependency.gyp
1825
2027
  - vendor/v8/build/gyp/test/hello/gyptest-all.py
1826
2028
  - vendor/v8/build/gyp/test/hello/gyptest-default.py
1827
2029
  - vendor/v8/build/gyp/test/hello/gyptest-disable-regyp.py
@@ -1833,9 +2035,24 @@ files:
1833
2035
  - vendor/v8/build/gyp/test/hello/hello2.gyp
1834
2036
  - vendor/v8/build/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py
1835
2037
  - vendor/v8/build/gyp/test/home_dot_gyp/gyptest-home-includes.py
2038
+ - vendor/v8/build/gyp/test/home_dot_gyp/src/all.gyp
2039
+ - vendor/v8/build/gyp/test/home_dot_gyp/src/printfoo.c
1836
2040
  - vendor/v8/build/gyp/test/include_dirs/gyptest-all.py
1837
2041
  - vendor/v8/build/gyp/test/include_dirs/gyptest-default.py
2042
+ - vendor/v8/build/gyp/test/include_dirs/src/inc.h
2043
+ - vendor/v8/build/gyp/test/include_dirs/src/inc1/include1.h
2044
+ - vendor/v8/build/gyp/test/include_dirs/src/includes.c
2045
+ - vendor/v8/build/gyp/test/include_dirs/src/includes.gyp
2046
+ - vendor/v8/build/gyp/test/include_dirs/src/shadow1/shadow.h
2047
+ - vendor/v8/build/gyp/test/include_dirs/src/shadow2/shadow.h
2048
+ - vendor/v8/build/gyp/test/include_dirs/src/subdir/inc.h
2049
+ - vendor/v8/build/gyp/test/include_dirs/src/subdir/inc2/include2.h
2050
+ - vendor/v8/build/gyp/test/include_dirs/src/subdir/subdir_includes.c
2051
+ - vendor/v8/build/gyp/test/include_dirs/src/subdir/subdir_includes.gyp
1838
2052
  - vendor/v8/build/gyp/test/intermediate_dir/gyptest-intermediate-dir.py
2053
+ - vendor/v8/build/gyp/test/intermediate_dir/src/script.py
2054
+ - vendor/v8/build/gyp/test/intermediate_dir/src/test.gyp
2055
+ - vendor/v8/build/gyp/test/intermediate_dir/src/test2.gyp
1839
2056
  - vendor/v8/build/gyp/test/lib/README.txt
1840
2057
  - vendor/v8/build/gyp/test/lib/TestCmd.py
1841
2058
  - vendor/v8/build/gyp/test/lib/TestCommon.py
@@ -1843,27 +2060,68 @@ files:
1843
2060
  - vendor/v8/build/gyp/test/library/gyptest-shared-obj-install-path.py
1844
2061
  - vendor/v8/build/gyp/test/library/gyptest-shared.py
1845
2062
  - vendor/v8/build/gyp/test/library/gyptest-static.py
2063
+ - vendor/v8/build/gyp/test/library/src/lib1.c
2064
+ - vendor/v8/build/gyp/test/library/src/lib1_moveable.c
2065
+ - vendor/v8/build/gyp/test/library/src/lib2.c
2066
+ - vendor/v8/build/gyp/test/library/src/lib2_moveable.c
2067
+ - vendor/v8/build/gyp/test/library/src/library.gyp
2068
+ - vendor/v8/build/gyp/test/library/src/program.c
2069
+ - vendor/v8/build/gyp/test/library/src/shared_dependency.gyp
1846
2070
  - vendor/v8/build/gyp/test/link-objects/base.c
1847
2071
  - vendor/v8/build/gyp/test/link-objects/extra.c
1848
2072
  - vendor/v8/build/gyp/test/link-objects/gyptest-all.py
1849
2073
  - vendor/v8/build/gyp/test/link-objects/link-objects.gyp
1850
- - vendor/v8/build/gyp/test/mac/gyptest-action-envvars.py
1851
- - vendor/v8/build/gyp/test/mac/gyptest-app.py
1852
- - vendor/v8/build/gyp/test/mac/gyptest-archs.py
1853
- - vendor/v8/build/gyp/test/mac/gyptest-copies.py
1854
- - vendor/v8/build/gyp/test/mac/gyptest-copy-dylib.py
1855
- - vendor/v8/build/gyp/test/mac/gyptest-debuginfo.py
1856
- - vendor/v8/build/gyp/test/mac/gyptest-depend-on-bundle.py
1857
- - vendor/v8/build/gyp/test/mac/gyptest-framework.py
1858
- - vendor/v8/build/gyp/test/mac/gyptest-global-settings.py
1859
- - vendor/v8/build/gyp/test/mac/gyptest-infoplist-process.py
1860
- - vendor/v8/build/gyp/test/mac/gyptest-libraries.py
1861
- - vendor/v8/build/gyp/test/mac/gyptest-loadable-module.py
1862
- - vendor/v8/build/gyp/test/mac/gyptest-missing-cfbundlesignature.py
1863
- - vendor/v8/build/gyp/test/mac/gyptest-non-strs-flattened-to-env.py
1864
- - vendor/v8/build/gyp/test/mac/gyptest-postbuild-copy-bundle.py
1865
- - vendor/v8/build/gyp/test/mac/gyptest-postbuild-defaults.py
1866
- - vendor/v8/build/gyp/test/mac/gyptest-postbuild-fail.py
2074
+ - vendor/v8/build/gyp/test/mac/action-envvars/action/action.gyp
2075
+ - vendor/v8/build/gyp/test/mac/action-envvars/action/action.sh
2076
+ - vendor/v8/build/gyp/test/mac/app-bundle/empty.c
2077
+ - vendor/v8/build/gyp/test/mac/app-bundle/test.gyp
2078
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings
2079
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib
2080
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/main.m
2081
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist
2082
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h
2083
+ - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m
2084
+ - vendor/v8/build/gyp/test/mac/archs/my_file.cc
2085
+ - vendor/v8/build/gyp/test/mac/archs/my_main_file.cc
2086
+ - vendor/v8/build/gyp/test/mac/archs/test-archs-x86_64.gyp
2087
+ - vendor/v8/build/gyp/test/mac/archs/test-no-archs.gyp
2088
+ - vendor/v8/build/gyp/test/mac/copy-dylib/empty.c
2089
+ - vendor/v8/build/gyp/test/mac/copy-dylib/test.gyp
2090
+ - vendor/v8/build/gyp/test/mac/debuginfo/file.c
2091
+ - vendor/v8/build/gyp/test/mac/debuginfo/test.gyp
2092
+ - vendor/v8/build/gyp/test/mac/depend-on-bundle/bundle.c
2093
+ - vendor/v8/build/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings
2094
+ - vendor/v8/build/gyp/test/mac/depend-on-bundle/executable.c
2095
+ - vendor/v8/build/gyp/test/mac/depend-on-bundle/Info.plist
2096
+ - vendor/v8/build/gyp/test/mac/depend-on-bundle/test.gyp
2097
+ - vendor/v8/build/gyp/test/mac/framework/empty.c
2098
+ - vendor/v8/build/gyp/test/mac/framework/framework.gyp
2099
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings
2100
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/Info.plist
2101
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVector.h
2102
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVector.mm
2103
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h
2104
+ - vendor/v8/build/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch
2105
+ - vendor/v8/build/gyp/test/mac/global-settings/src/dir1/dir1.gyp
2106
+ - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/dir2.gyp
2107
+ - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/file.txt
2108
+ - vendor/v8/build/gyp/test/mac/gyptest-action-envvars.py
2109
+ - vendor/v8/build/gyp/test/mac/gyptest-app.py
2110
+ - vendor/v8/build/gyp/test/mac/gyptest-archs.py
2111
+ - vendor/v8/build/gyp/test/mac/gyptest-copies.py
2112
+ - vendor/v8/build/gyp/test/mac/gyptest-copy-dylib.py
2113
+ - vendor/v8/build/gyp/test/mac/gyptest-debuginfo.py
2114
+ - vendor/v8/build/gyp/test/mac/gyptest-depend-on-bundle.py
2115
+ - vendor/v8/build/gyp/test/mac/gyptest-framework.py
2116
+ - vendor/v8/build/gyp/test/mac/gyptest-global-settings.py
2117
+ - vendor/v8/build/gyp/test/mac/gyptest-infoplist-process.py
2118
+ - vendor/v8/build/gyp/test/mac/gyptest-libraries.py
2119
+ - vendor/v8/build/gyp/test/mac/gyptest-loadable-module.py
2120
+ - vendor/v8/build/gyp/test/mac/gyptest-missing-cfbundlesignature.py
2121
+ - vendor/v8/build/gyp/test/mac/gyptest-non-strs-flattened-to-env.py
2122
+ - vendor/v8/build/gyp/test/mac/gyptest-postbuild-copy-bundle.py
2123
+ - vendor/v8/build/gyp/test/mac/gyptest-postbuild-defaults.py
2124
+ - vendor/v8/build/gyp/test/mac/gyptest-postbuild-fail.py
1867
2125
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild-multiple-configurations.py
1868
2126
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild-static-library.gyp
1869
2127
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild.py
@@ -1874,37 +2132,238 @@ files:
1874
2132
  - vendor/v8/build/gyp/test/mac/gyptest-strip.py
1875
2133
  - vendor/v8/build/gyp/test/mac/gyptest-type-envvars.py
1876
2134
  - vendor/v8/build/gyp/test/mac/gyptest-xcode-env-order.py
2135
+ - vendor/v8/build/gyp/test/mac/infoplist-process/Info.plist
2136
+ - vendor/v8/build/gyp/test/mac/infoplist-process/main.c
2137
+ - vendor/v8/build/gyp/test/mac/infoplist-process/test1.gyp
2138
+ - vendor/v8/build/gyp/test/mac/infoplist-process/test2.gyp
2139
+ - vendor/v8/build/gyp/test/mac/infoplist-process/test3.gyp
2140
+ - vendor/v8/build/gyp/test/mac/libraries/subdir/hello.cc
2141
+ - vendor/v8/build/gyp/test/mac/libraries/subdir/mylib.c
2142
+ - vendor/v8/build/gyp/test/mac/libraries/subdir/README.txt
2143
+ - vendor/v8/build/gyp/test/mac/libraries/subdir/test.gyp
2144
+ - vendor/v8/build/gyp/test/mac/loadable-module/Info.plist
2145
+ - vendor/v8/build/gyp/test/mac/loadable-module/module.c
2146
+ - vendor/v8/build/gyp/test/mac/loadable-module/test.gyp
2147
+ - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/file.c
2148
+ - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Info.plist
2149
+ - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist
2150
+ - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/test.gyp
2151
+ - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist
2152
+ - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/Info.plist
2153
+ - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/main.c
2154
+ - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/test.gyp
2155
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/empty.c
2156
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist
2157
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/main.c
2158
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh
2159
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/resource_file.sb
2160
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/test.gyp
2161
+ - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist
2162
+ - vendor/v8/build/gyp/test/mac/postbuild-defaults/Info.plist
2163
+ - vendor/v8/build/gyp/test/mac/postbuild-defaults/main.c
2164
+ - vendor/v8/build/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh
2165
+ - vendor/v8/build/gyp/test/mac/postbuild-defaults/test.gyp
2166
+ - vendor/v8/build/gyp/test/mac/postbuild-fail/file.c
2167
+ - vendor/v8/build/gyp/test/mac/postbuild-fail/postbuild-fail.sh
2168
+ - vendor/v8/build/gyp/test/mac/postbuild-fail/test.gyp
2169
+ - vendor/v8/build/gyp/test/mac/postbuild-fail/touch-dynamic.sh
2170
+ - vendor/v8/build/gyp/test/mac/postbuild-fail/touch-static.sh
2171
+ - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/main.c
2172
+ - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh
2173
+ - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/test.gyp
2174
+ - vendor/v8/build/gyp/test/mac/postbuild-static-library/empty.c
2175
+ - vendor/v8/build/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh
2176
+ - vendor/v8/build/gyp/test/mac/postbuild-static-library/test.gyp
2177
+ - vendor/v8/build/gyp/test/mac/postbuilds/file.c
2178
+ - vendor/v8/build/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh
2179
+ - vendor/v8/build/gyp/test/mac/postbuilds/script/static_library_postbuild.sh
2180
+ - vendor/v8/build/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp
2181
+ - vendor/v8/build/gyp/test/mac/postbuilds/test.gyp
2182
+ - vendor/v8/build/gyp/test/mac/prefixheader/file.c
2183
+ - vendor/v8/build/gyp/test/mac/prefixheader/file.cc
2184
+ - vendor/v8/build/gyp/test/mac/prefixheader/file.m
2185
+ - vendor/v8/build/gyp/test/mac/prefixheader/file.mm
2186
+ - vendor/v8/build/gyp/test/mac/prefixheader/header.h
2187
+ - vendor/v8/build/gyp/test/mac/prefixheader/test.gyp
2188
+ - vendor/v8/build/gyp/test/mac/rebuild/delay-touch.sh
2189
+ - vendor/v8/build/gyp/test/mac/rebuild/empty.c
2190
+ - vendor/v8/build/gyp/test/mac/rebuild/main.c
2191
+ - vendor/v8/build/gyp/test/mac/rebuild/test.gyp
2192
+ - vendor/v8/build/gyp/test/mac/rebuild/TestApp-Info.plist
2193
+ - vendor/v8/build/gyp/test/mac/sdkroot/file.cc
2194
+ - vendor/v8/build/gyp/test/mac/sdkroot/test.gyp
2195
+ - vendor/v8/build/gyp/test/mac/sourceless-module/empty.c
2196
+ - vendor/v8/build/gyp/test/mac/sourceless-module/test.gyp
2197
+ - vendor/v8/build/gyp/test/mac/strip/file.c
2198
+ - vendor/v8/build/gyp/test/mac/strip/strip.saves
2199
+ - vendor/v8/build/gyp/test/mac/strip/test.gyp
2200
+ - vendor/v8/build/gyp/test/mac/type_envvars/file.c
2201
+ - vendor/v8/build/gyp/test/mac/type_envvars/test.gyp
2202
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_executable.sh
2203
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh
2204
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_shared_library.sh
2205
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_executable.sh
2206
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh
2207
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_none.sh
2208
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh
2209
+ - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh
2210
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/Info.plist
2211
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/main.c
2212
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/test.gyp
1877
2213
  - vendor/v8/build/gyp/test/make/dependencies.gyp
1878
2214
  - vendor/v8/build/gyp/test/make/gyptest-dependencies.py
1879
2215
  - vendor/v8/build/gyp/test/make/gyptest-noload.py
1880
2216
  - vendor/v8/build/gyp/test/make/main.cc
1881
2217
  - vendor/v8/build/gyp/test/make/main.h
2218
+ - vendor/v8/build/gyp/test/make/noload/all.gyp
2219
+ - vendor/v8/build/gyp/test/make/noload/lib/shared.c
2220
+ - vendor/v8/build/gyp/test/make/noload/lib/shared.gyp
2221
+ - vendor/v8/build/gyp/test/make/noload/lib/shared.h
2222
+ - vendor/v8/build/gyp/test/make/noload/main.c
1882
2223
  - vendor/v8/build/gyp/test/module/gyptest-default.py
2224
+ - vendor/v8/build/gyp/test/module/src/lib1.c
2225
+ - vendor/v8/build/gyp/test/module/src/lib2.c
2226
+ - vendor/v8/build/gyp/test/module/src/module.gyp
2227
+ - vendor/v8/build/gyp/test/module/src/program.c
2228
+ - vendor/v8/build/gyp/test/msvs/config_attrs/gyptest-config_attrs.py
2229
+ - vendor/v8/build/gyp/test/msvs/config_attrs/hello.c
2230
+ - vendor/v8/build/gyp/test/msvs/config_attrs/hello.gyp
2231
+ - vendor/v8/build/gyp/test/msvs/express/base/base.gyp
2232
+ - vendor/v8/build/gyp/test/msvs/express/express.gyp
2233
+ - vendor/v8/build/gyp/test/msvs/express/gyptest-express.py
2234
+ - vendor/v8/build/gyp/test/msvs/list_excluded/gyptest-all.py
2235
+ - vendor/v8/build/gyp/test/msvs/list_excluded/hello.cpp
2236
+ - vendor/v8/build/gyp/test/msvs/list_excluded/hello_exclude.gyp
2237
+ - vendor/v8/build/gyp/test/msvs/list_excluded/hello_mac.cpp
2238
+ - vendor/v8/build/gyp/test/msvs/precompiled/gyptest-all.py
2239
+ - vendor/v8/build/gyp/test/msvs/precompiled/hello.c
2240
+ - vendor/v8/build/gyp/test/msvs/precompiled/hello.gyp
2241
+ - vendor/v8/build/gyp/test/msvs/precompiled/hello2.c
2242
+ - vendor/v8/build/gyp/test/msvs/precompiled/precomp.c
2243
+ - vendor/v8/build/gyp/test/msvs/props/AppName.props
2244
+ - vendor/v8/build/gyp/test/msvs/props/AppName.vsprops
2245
+ - vendor/v8/build/gyp/test/msvs/props/gyptest-props.py
2246
+ - vendor/v8/build/gyp/test/msvs/props/hello.c
2247
+ - vendor/v8/build/gyp/test/msvs/props/hello.gyp
2248
+ - vendor/v8/build/gyp/test/msvs/uldi2010/gyptest-all.py
2249
+ - vendor/v8/build/gyp/test/msvs/uldi2010/hello.c
2250
+ - vendor/v8/build/gyp/test/msvs/uldi2010/hello.gyp
2251
+ - vendor/v8/build/gyp/test/msvs/uldi2010/hello2.c
1883
2252
  - vendor/v8/build/gyp/test/multiple-targets/gyptest-all.py
1884
2253
  - vendor/v8/build/gyp/test/multiple-targets/gyptest-default.py
2254
+ - vendor/v8/build/gyp/test/multiple-targets/src/common.c
2255
+ - vendor/v8/build/gyp/test/multiple-targets/src/multiple.gyp
2256
+ - vendor/v8/build/gyp/test/multiple-targets/src/prog1.c
2257
+ - vendor/v8/build/gyp/test/multiple-targets/src/prog2.c
2258
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py
2259
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/a.c
2260
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/a.h
2261
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp
2262
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/b.c
2263
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/b.h
2264
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/c.c
2265
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/c.h
2266
+ - vendor/v8/build/gyp/test/ninja/action_dependencies/src/emit.py
2267
+ - vendor/v8/build/gyp/test/ninja/chained-dependency/chained-dependency.gyp
2268
+ - vendor/v8/build/gyp/test/ninja/chained-dependency/chained.c
2269
+ - vendor/v8/build/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py
1885
2270
  - vendor/v8/build/gyp/test/no-output/gyptest-no-output.py
2271
+ - vendor/v8/build/gyp/test/no-output/src/nooutput.gyp
1886
2272
  - vendor/v8/build/gyp/test/product/gyptest-product.py
1887
2273
  - vendor/v8/build/gyp/test/product/hello.c
1888
2274
  - vendor/v8/build/gyp/test/product/product.gyp
2275
+ - vendor/v8/build/gyp/test/relative/foo/a/a.cc
2276
+ - vendor/v8/build/gyp/test/relative/foo/a/a.gyp
2277
+ - vendor/v8/build/gyp/test/relative/foo/a/c/c.cc
2278
+ - vendor/v8/build/gyp/test/relative/foo/a/c/c.gyp
2279
+ - vendor/v8/build/gyp/test/relative/foo/b/b.cc
2280
+ - vendor/v8/build/gyp/test/relative/foo/b/b.gyp
1889
2281
  - vendor/v8/build/gyp/test/relative/gyptest-default.py
1890
2282
  - vendor/v8/build/gyp/test/restat/gyptest-restat.py
2283
+ - vendor/v8/build/gyp/test/restat/src/create_intermediate.py
2284
+ - vendor/v8/build/gyp/test/restat/src/restat.gyp
2285
+ - vendor/v8/build/gyp/test/restat/src/touch.py
1891
2286
  - vendor/v8/build/gyp/test/rules/gyptest-all.py
1892
2287
  - vendor/v8/build/gyp/test/rules/gyptest-default.py
1893
2288
  - vendor/v8/build/gyp/test/rules/gyptest-input-root.py
2289
+ - vendor/v8/build/gyp/test/rules/src/actions.gyp
2290
+ - vendor/v8/build/gyp/test/rules/src/copy-file.py
2291
+ - vendor/v8/build/gyp/test/rules/src/external/external.gyp
2292
+ - vendor/v8/build/gyp/test/rules/src/external/file1.in
2293
+ - vendor/v8/build/gyp/test/rules/src/external/file2.in
2294
+ - vendor/v8/build/gyp/test/rules/src/input-root.gyp
2295
+ - vendor/v8/build/gyp/test/rules/src/rule.py
2296
+ - vendor/v8/build/gyp/test/rules/src/somefile.ext
2297
+ - vendor/v8/build/gyp/test/rules/src/subdir1/executable.gyp
2298
+ - vendor/v8/build/gyp/test/rules/src/subdir1/function1.in
2299
+ - vendor/v8/build/gyp/test/rules/src/subdir1/function2.in
2300
+ - vendor/v8/build/gyp/test/rules/src/subdir1/program.c
2301
+ - vendor/v8/build/gyp/test/rules/src/subdir2/file1.in
2302
+ - vendor/v8/build/gyp/test/rules/src/subdir2/file2.in
2303
+ - vendor/v8/build/gyp/test/rules/src/subdir2/never_used.gyp
2304
+ - vendor/v8/build/gyp/test/rules/src/subdir2/no_inputs.gyp
2305
+ - vendor/v8/build/gyp/test/rules/src/subdir2/none.gyp
2306
+ - vendor/v8/build/gyp/test/rules/src/subdir3/executable2.gyp
2307
+ - vendor/v8/build/gyp/test/rules/src/subdir3/function3.in
2308
+ - vendor/v8/build/gyp/test/rules/src/subdir3/program.c
2309
+ - vendor/v8/build/gyp/test/rules/src/subdir4/asm-function.asm
2310
+ - vendor/v8/build/gyp/test/rules/src/subdir4/build-asm.gyp
2311
+ - vendor/v8/build/gyp/test/rules/src/subdir4/program.c
1894
2312
  - vendor/v8/build/gyp/test/rules-dirname/gyptest-dirname.py
2313
+ - vendor/v8/build/gyp/test/rules-dirname/src/actions.gyp
2314
+ - vendor/v8/build/gyp/test/rules-dirname/src/copy-file.py
2315
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/a/b/c.gencc
2316
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/a/b/c.printvars
2317
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc
2318
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars
2319
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp
2320
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/main.cc
2321
+ - vendor/v8/build/gyp/test/rules-dirname/src/subdir/printvars.py
1895
2322
  - vendor/v8/build/gyp/test/rules-rebuild/gyptest-all.py
1896
2323
  - vendor/v8/build/gyp/test/rules-rebuild/gyptest-default.py
2324
+ - vendor/v8/build/gyp/test/rules-rebuild/src/main.c
2325
+ - vendor/v8/build/gyp/test/rules-rebuild/src/make-sources.py
2326
+ - vendor/v8/build/gyp/test/rules-rebuild/src/prog1.in
2327
+ - vendor/v8/build/gyp/test/rules-rebuild/src/prog2.in
2328
+ - vendor/v8/build/gyp/test/rules-rebuild/src/same_target.gyp
1897
2329
  - vendor/v8/build/gyp/test/rules-variables/gyptest-rules-variables.py
2330
+ - vendor/v8/build/gyp/test/rules-variables/src/input_ext.c
2331
+ - vendor/v8/build/gyp/test/rules-variables/src/input_name/test.c
2332
+ - vendor/v8/build/gyp/test/rules-variables/src/input_path/subdir/test.c
2333
+ - vendor/v8/build/gyp/test/rules-variables/src/subdir/input_dirname.c
2334
+ - vendor/v8/build/gyp/test/rules-variables/src/subdir/test.c
2335
+ - vendor/v8/build/gyp/test/rules-variables/src/test.input_root.c
2336
+ - vendor/v8/build/gyp/test/rules-variables/src/variables.gyp
1898
2337
  - vendor/v8/build/gyp/test/same-gyp-name/gyptest-all.py
1899
2338
  - vendor/v8/build/gyp/test/same-gyp-name/gyptest-default.py
2339
+ - vendor/v8/build/gyp/test/same-gyp-name/src/all.gyp
2340
+ - vendor/v8/build/gyp/test/same-gyp-name/src/subdir1/executable.gyp
2341
+ - vendor/v8/build/gyp/test/same-gyp-name/src/subdir1/main1.cc
2342
+ - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/executable.gyp
2343
+ - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/main2.cc
1900
2344
  - vendor/v8/build/gyp/test/same-name/gyptest-all.py
1901
2345
  - vendor/v8/build/gyp/test/same-name/gyptest-default.py
2346
+ - vendor/v8/build/gyp/test/same-name/src/all.gyp
2347
+ - vendor/v8/build/gyp/test/same-name/src/func.c
2348
+ - vendor/v8/build/gyp/test/same-name/src/prog1.c
2349
+ - vendor/v8/build/gyp/test/same-name/src/prog2.c
2350
+ - vendor/v8/build/gyp/test/same-name/src/subdir1/func.c
2351
+ - vendor/v8/build/gyp/test/same-name/src/subdir2/func.c
1902
2352
  - vendor/v8/build/gyp/test/same-target-name/gyptest-same-target-name.py
2353
+ - vendor/v8/build/gyp/test/same-target-name/src/all.gyp
2354
+ - vendor/v8/build/gyp/test/same-target-name/src/executable1.gyp
2355
+ - vendor/v8/build/gyp/test/same-target-name/src/executable2.gyp
1903
2356
  - vendor/v8/build/gyp/test/scons_tools/gyptest-tools.py
2357
+ - vendor/v8/build/gyp/test/scons_tools/site_scons/site_tools/this_tool.py
1904
2358
  - vendor/v8/build/gyp/test/scons_tools/tools.c
1905
2359
  - vendor/v8/build/gyp/test/scons_tools/tools.gyp
1906
2360
  - vendor/v8/build/gyp/test/sibling/gyptest-all.py
1907
2361
  - vendor/v8/build/gyp/test/sibling/gyptest-relocate.py
2362
+ - vendor/v8/build/gyp/test/sibling/src/build/all.gyp
2363
+ - vendor/v8/build/gyp/test/sibling/src/prog1/prog1.c
2364
+ - vendor/v8/build/gyp/test/sibling/src/prog1/prog1.gyp
2365
+ - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.c
2366
+ - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.gyp
1908
2367
  - vendor/v8/build/gyp/test/small/gyptest-small.py
1909
2368
  - vendor/v8/build/gyp/test/subdirectory/gyptest-subdir-all.py
1910
2369
  - vendor/v8/build/gyp/test/subdirectory/gyptest-subdir-default.py
@@ -1913,38 +2372,43 @@ files:
1913
2372
  - vendor/v8/build/gyp/test/subdirectory/gyptest-SYMROOT-default.py
1914
2373
  - vendor/v8/build/gyp/test/subdirectory/gyptest-top-all.py
1915
2374
  - vendor/v8/build/gyp/test/subdirectory/gyptest-top-default.py
1916
- - vendor/v8/build/gyp/test/toolsets/gyptest-toolsets.py
1917
- - vendor/v8/build/gyp/test/toolsets/main.cc
1918
- - vendor/v8/build/gyp/test/toolsets/toolsets.cc
1919
- - vendor/v8/build/gyp/test/toolsets/toolsets.gyp
2375
+ - vendor/v8/build/gyp/test/subdirectory/src/prog1.c
2376
+ - vendor/v8/build/gyp/test/subdirectory/src/prog1.gyp
2377
+ - vendor/v8/build/gyp/test/subdirectory/src/subdir/prog2.c
2378
+ - vendor/v8/build/gyp/test/subdirectory/src/subdir/prog2.gyp
2379
+ - vendor/v8/build/gyp/test/subdirectory/src/subdir/subdir2/prog3.c
2380
+ - vendor/v8/build/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp
2381
+ - vendor/v8/build/gyp/test/subdirectory/src/symroot.gypi
2382
+ - vendor/v8/build/gyp/test/toolsets/gyptest-toolsets.py
2383
+ - vendor/v8/build/gyp/test/toolsets/main.cc
2384
+ - vendor/v8/build/gyp/test/toolsets/toolsets.cc
2385
+ - vendor/v8/build/gyp/test/toolsets/toolsets.gyp
1920
2386
  - vendor/v8/build/gyp/test/toplevel-dir/gyptest-toplevel-dir.py
2387
+ - vendor/v8/build/gyp/test/toplevel-dir/src/sub1/main.gyp
2388
+ - vendor/v8/build/gyp/test/toplevel-dir/src/sub1/prog1.c
2389
+ - vendor/v8/build/gyp/test/toplevel-dir/src/sub2/prog2.c
2390
+ - vendor/v8/build/gyp/test/toplevel-dir/src/sub2/prog2.gyp
2391
+ - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gyp
2392
+ - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gyp.stdout
2393
+ - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gypd.golden
2394
+ - vendor/v8/build/gyp/test/variables/commands/commands.gyp
2395
+ - vendor/v8/build/gyp/test/variables/commands/commands.gyp.ignore-env.stdout
2396
+ - vendor/v8/build/gyp/test/variables/commands/commands.gyp.stdout
2397
+ - vendor/v8/build/gyp/test/variables/commands/commands.gypd.golden
2398
+ - vendor/v8/build/gyp/test/variables/commands/commands.gypi
2399
+ - vendor/v8/build/gyp/test/variables/commands/gyptest-commands-ignore-env.py
2400
+ - vendor/v8/build/gyp/test/variables/commands/gyptest-commands-repeated.py
2401
+ - vendor/v8/build/gyp/test/variables/commands/gyptest-commands.py
2402
+ - vendor/v8/build/gyp/test/variables/commands/test.py
2403
+ - vendor/v8/build/gyp/test/variables/commands/update_golden
2404
+ - vendor/v8/build/gyp/test/variables/filelist/filelist.gyp.stdout
2405
+ - vendor/v8/build/gyp/test/variables/filelist/filelist.gypd.golden
2406
+ - vendor/v8/build/gyp/test/variables/filelist/gyptest-filelist.py
2407
+ - vendor/v8/build/gyp/test/variables/filelist/src/filelist.gyp
2408
+ - vendor/v8/build/gyp/test/variables/filelist/update_golden
1921
2409
  - vendor/v8/build/gyp/test/variants/gyptest-variants.py
1922
- - vendor/v8/build/gyp/test/win/gyptest-cl-additional-options.py
1923
- - vendor/v8/build/gyp/test/win/gyptest-cl-buffer-security-check.py
1924
- - vendor/v8/build/gyp/test/win/gyptest-cl-character-set.py
1925
- - vendor/v8/build/gyp/test/win/gyptest-cl-debug-format.py
1926
- - vendor/v8/build/gyp/test/win/gyptest-cl-exception-handling.py
1927
- - vendor/v8/build/gyp/test/win/gyptest-cl-function-level-linking.py
1928
- - vendor/v8/build/gyp/test/win/gyptest-cl-optimizations.py
1929
- - vendor/v8/build/gyp/test/win/gyptest-cl-rtti.py
1930
- - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-checks.py
1931
- - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-library.py
1932
- - vendor/v8/build/gyp/test/win/gyptest-cl-warning-as-error.py
1933
- - vendor/v8/build/gyp/test/win/gyptest-cl-warning-level.py
1934
- - vendor/v8/build/gyp/test/win/gyptest-link-additional-deps.py
1935
- - vendor/v8/build/gyp/test/win/gyptest-link-additional-options.py
1936
- - vendor/v8/build/gyp/test/win/gyptest-link-aslr.py
1937
- - vendor/v8/build/gyp/test/win/gyptest-link-debug-info.py
1938
- - vendor/v8/build/gyp/test/win/gyptest-link-default-libs.py
1939
- - vendor/v8/build/gyp/test/win/gyptest-link-delay-load-dlls.py
1940
- - vendor/v8/build/gyp/test/win/gyptest-link-fixed-base.py
1941
- - vendor/v8/build/gyp/test/win/gyptest-link-incremental.py
1942
- - vendor/v8/build/gyp/test/win/gyptest-link-library-directories.py
1943
- - vendor/v8/build/gyp/test/win/gyptest-link-nxcompat.py
1944
- - vendor/v8/build/gyp/test/win/gyptest-link-opt-icf.py
1945
- - vendor/v8/build/gyp/test/win/gyptest-link-opt-ref.py
1946
- - vendor/v8/build/gyp/test/win/gyptest-link-subsystem.py
1947
- - vendor/v8/build/gyp/test/win/gyptest-long-command-line.py
2410
+ - vendor/v8/build/gyp/test/variants/src/variants.c
2411
+ - vendor/v8/build/gyp/test/variants/src/variants.gyp
1948
2412
  - vendor/v8/build/gyp/test/win/compiler-flags/additional-options.cc
1949
2413
  - vendor/v8/build/gyp/test/win/compiler-flags/additional-options.gyp
1950
2414
  - vendor/v8/build/gyp/test/win/compiler-flags/buffer-security-check.gyp
@@ -1975,6 +2439,32 @@ files:
1975
2439
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level2.cc
1976
2440
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level3.cc
1977
2441
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level4.cc
2442
+ - vendor/v8/build/gyp/test/win/gyptest-cl-additional-options.py
2443
+ - vendor/v8/build/gyp/test/win/gyptest-cl-buffer-security-check.py
2444
+ - vendor/v8/build/gyp/test/win/gyptest-cl-character-set.py
2445
+ - vendor/v8/build/gyp/test/win/gyptest-cl-debug-format.py
2446
+ - vendor/v8/build/gyp/test/win/gyptest-cl-exception-handling.py
2447
+ - vendor/v8/build/gyp/test/win/gyptest-cl-function-level-linking.py
2448
+ - vendor/v8/build/gyp/test/win/gyptest-cl-optimizations.py
2449
+ - vendor/v8/build/gyp/test/win/gyptest-cl-rtti.py
2450
+ - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-checks.py
2451
+ - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-library.py
2452
+ - vendor/v8/build/gyp/test/win/gyptest-cl-warning-as-error.py
2453
+ - vendor/v8/build/gyp/test/win/gyptest-cl-warning-level.py
2454
+ - vendor/v8/build/gyp/test/win/gyptest-link-additional-deps.py
2455
+ - vendor/v8/build/gyp/test/win/gyptest-link-additional-options.py
2456
+ - vendor/v8/build/gyp/test/win/gyptest-link-aslr.py
2457
+ - vendor/v8/build/gyp/test/win/gyptest-link-debug-info.py
2458
+ - vendor/v8/build/gyp/test/win/gyptest-link-default-libs.py
2459
+ - vendor/v8/build/gyp/test/win/gyptest-link-delay-load-dlls.py
2460
+ - vendor/v8/build/gyp/test/win/gyptest-link-fixed-base.py
2461
+ - vendor/v8/build/gyp/test/win/gyptest-link-incremental.py
2462
+ - vendor/v8/build/gyp/test/win/gyptest-link-library-directories.py
2463
+ - vendor/v8/build/gyp/test/win/gyptest-link-nxcompat.py
2464
+ - vendor/v8/build/gyp/test/win/gyptest-link-opt-icf.py
2465
+ - vendor/v8/build/gyp/test/win/gyptest-link-opt-ref.py
2466
+ - vendor/v8/build/gyp/test/win/gyptest-link-subsystem.py
2467
+ - vendor/v8/build/gyp/test/win/gyptest-long-command-line.py
1978
2468
  - vendor/v8/build/gyp/test/win/linker-flags/additional-deps.cc
1979
2469
  - vendor/v8/build/gyp/test/win/linker-flags/additional-deps.gyp
1980
2470
  - vendor/v8/build/gyp/test/win/linker-flags/additional-options.gyp
@@ -1995,526 +2485,48 @@ files:
1995
2485
  - vendor/v8/build/gyp/test/win/linker-flags/opt-icf.gyp
1996
2486
  - vendor/v8/build/gyp/test/win/linker-flags/opt-ref.cc
1997
2487
  - vendor/v8/build/gyp/test/win/linker-flags/opt-ref.gyp
2488
+ - vendor/v8/build/gyp/test/win/linker-flags/subdir/library.gyp
1998
2489
  - vendor/v8/build/gyp/test/win/linker-flags/subsystem-windows.cc
1999
2490
  - vendor/v8/build/gyp/test/win/linker-flags/subsystem.gyp
2000
2491
  - vendor/v8/build/gyp/test/win/long-command-line/hello.cc
2001
2492
  - vendor/v8/build/gyp/test/win/long-command-line/long-command-line.gyp
2002
- - vendor/v8/build/gyp/test/win/linker-flags/subdir/library.gyp
2003
- - vendor/v8/build/gyp/test/variants/src/variants.c
2004
- - vendor/v8/build/gyp/test/variants/src/variants.gyp
2005
- - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gyp
2006
- - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gyp.stdout
2007
- - vendor/v8/build/gyp/test/variables/commands/commands-repeated.gypd.golden
2008
- - vendor/v8/build/gyp/test/variables/commands/commands.gyp
2009
- - vendor/v8/build/gyp/test/variables/commands/commands.gyp.ignore-env.stdout
2010
- - vendor/v8/build/gyp/test/variables/commands/commands.gyp.stdout
2011
- - vendor/v8/build/gyp/test/variables/commands/commands.gypd.golden
2012
- - vendor/v8/build/gyp/test/variables/commands/commands.gypi
2013
- - vendor/v8/build/gyp/test/variables/commands/gyptest-commands-ignore-env.py
2014
- - vendor/v8/build/gyp/test/variables/commands/gyptest-commands-repeated.py
2015
- - vendor/v8/build/gyp/test/variables/commands/gyptest-commands.py
2016
- - vendor/v8/build/gyp/test/variables/commands/test.py
2017
- - vendor/v8/build/gyp/test/variables/commands/update_golden
2018
- - vendor/v8/build/gyp/test/variables/filelist/filelist.gyp.stdout
2019
- - vendor/v8/build/gyp/test/variables/filelist/filelist.gypd.golden
2020
- - vendor/v8/build/gyp/test/variables/filelist/gyptest-filelist.py
2021
- - vendor/v8/build/gyp/test/variables/filelist/update_golden
2022
- - vendor/v8/build/gyp/test/variables/filelist/src/filelist.gyp
2023
- - vendor/v8/build/gyp/test/toplevel-dir/src/sub1/main.gyp
2024
- - vendor/v8/build/gyp/test/toplevel-dir/src/sub1/prog1.c
2025
- - vendor/v8/build/gyp/test/toplevel-dir/src/sub2/prog2.c
2026
- - vendor/v8/build/gyp/test/toplevel-dir/src/sub2/prog2.gyp
2027
- - vendor/v8/build/gyp/test/subdirectory/src/prog1.c
2028
- - vendor/v8/build/gyp/test/subdirectory/src/prog1.gyp
2029
- - vendor/v8/build/gyp/test/subdirectory/src/symroot.gypi
2030
- - vendor/v8/build/gyp/test/subdirectory/src/subdir/prog2.c
2031
- - vendor/v8/build/gyp/test/subdirectory/src/subdir/prog2.gyp
2032
- - vendor/v8/build/gyp/test/subdirectory/src/subdir/subdir2/prog3.c
2033
- - vendor/v8/build/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp
2034
- - vendor/v8/build/gyp/test/sibling/src/build/all.gyp
2035
- - vendor/v8/build/gyp/test/sibling/src/prog1/prog1.c
2036
- - vendor/v8/build/gyp/test/sibling/src/prog1/prog1.gyp
2037
- - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.c
2038
- - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.gyp
2039
- - vendor/v8/build/gyp/test/scons_tools/site_scons/site_tools/this_tool.py
2040
- - vendor/v8/build/gyp/test/same-target-name/src/all.gyp
2041
- - vendor/v8/build/gyp/test/same-target-name/src/executable1.gyp
2042
- - vendor/v8/build/gyp/test/same-target-name/src/executable2.gyp
2043
- - vendor/v8/build/gyp/test/same-name/src/all.gyp
2044
- - vendor/v8/build/gyp/test/same-name/src/func.c
2045
- - vendor/v8/build/gyp/test/same-name/src/prog1.c
2046
- - vendor/v8/build/gyp/test/same-name/src/prog2.c
2047
- - vendor/v8/build/gyp/test/same-name/src/subdir1/func.c
2048
- - vendor/v8/build/gyp/test/same-name/src/subdir2/func.c
2049
- - vendor/v8/build/gyp/test/same-gyp-name/src/all.gyp
2050
- - vendor/v8/build/gyp/test/same-gyp-name/src/subdir1/executable.gyp
2051
- - vendor/v8/build/gyp/test/same-gyp-name/src/subdir1/main1.cc
2052
- - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/executable.gyp
2053
- - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/main2.cc
2054
- - vendor/v8/build/gyp/test/rules-variables/src/input_ext.c
2055
- - vendor/v8/build/gyp/test/rules-variables/src/test.input_root.c
2056
- - vendor/v8/build/gyp/test/rules-variables/src/variables.gyp
2057
- - vendor/v8/build/gyp/test/rules-variables/src/input_name/test.c
2058
- - vendor/v8/build/gyp/test/rules-variables/src/subdir/input_dirname.c
2059
- - vendor/v8/build/gyp/test/rules-variables/src/subdir/test.c
2060
- - vendor/v8/build/gyp/test/rules-variables/src/input_path/subdir/test.c
2061
- - vendor/v8/build/gyp/test/rules-rebuild/src/main.c
2062
- - vendor/v8/build/gyp/test/rules-rebuild/src/make-sources.py
2063
- - vendor/v8/build/gyp/test/rules-rebuild/src/prog1.in
2064
- - vendor/v8/build/gyp/test/rules-rebuild/src/prog2.in
2065
- - vendor/v8/build/gyp/test/rules-rebuild/src/same_target.gyp
2066
- - vendor/v8/build/gyp/test/rules-dirname/src/actions.gyp
2067
- - vendor/v8/build/gyp/test/rules-dirname/src/copy-file.py
2068
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp
2069
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/main.cc
2070
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/printvars.py
2071
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc
2072
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars
2073
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/a/b/c.gencc
2074
- - vendor/v8/build/gyp/test/rules-dirname/src/subdir/a/b/c.printvars
2075
- - vendor/v8/build/gyp/test/rules/src/actions.gyp
2076
- - vendor/v8/build/gyp/test/rules/src/copy-file.py
2077
- - vendor/v8/build/gyp/test/rules/src/input-root.gyp
2078
- - vendor/v8/build/gyp/test/rules/src/rule.py
2079
- - vendor/v8/build/gyp/test/rules/src/somefile.ext
2080
- - vendor/v8/build/gyp/test/rules/src/external/external.gyp
2081
- - vendor/v8/build/gyp/test/rules/src/external/file1.in
2082
- - vendor/v8/build/gyp/test/rules/src/external/file2.in
2083
- - vendor/v8/build/gyp/test/rules/src/subdir1/executable.gyp
2084
- - vendor/v8/build/gyp/test/rules/src/subdir1/function1.in
2085
- - vendor/v8/build/gyp/test/rules/src/subdir1/function2.in
2086
- - vendor/v8/build/gyp/test/rules/src/subdir1/program.c
2087
- - vendor/v8/build/gyp/test/rules/src/subdir2/file1.in
2088
- - vendor/v8/build/gyp/test/rules/src/subdir2/file2.in
2089
- - vendor/v8/build/gyp/test/rules/src/subdir2/never_used.gyp
2090
- - vendor/v8/build/gyp/test/rules/src/subdir2/no_inputs.gyp
2091
- - vendor/v8/build/gyp/test/rules/src/subdir2/none.gyp
2092
- - vendor/v8/build/gyp/test/rules/src/subdir3/executable2.gyp
2093
- - vendor/v8/build/gyp/test/rules/src/subdir3/function3.in
2094
- - vendor/v8/build/gyp/test/rules/src/subdir3/program.c
2095
- - vendor/v8/build/gyp/test/rules/src/subdir4/asm-function.asm
2096
- - vendor/v8/build/gyp/test/rules/src/subdir4/build-asm.gyp
2097
- - vendor/v8/build/gyp/test/rules/src/subdir4/program.c
2098
- - vendor/v8/build/gyp/test/restat/src/create_intermediate.py
2099
- - vendor/v8/build/gyp/test/restat/src/restat.gyp
2100
- - vendor/v8/build/gyp/test/restat/src/touch.py
2101
- - vendor/v8/build/gyp/test/relative/foo/a/a.cc
2102
- - vendor/v8/build/gyp/test/relative/foo/a/a.gyp
2103
- - vendor/v8/build/gyp/test/relative/foo/b/b.cc
2104
- - vendor/v8/build/gyp/test/relative/foo/b/b.gyp
2105
- - vendor/v8/build/gyp/test/relative/foo/a/c/c.cc
2106
- - vendor/v8/build/gyp/test/relative/foo/a/c/c.gyp
2107
- - vendor/v8/build/gyp/test/no-output/src/nooutput.gyp
2108
- - vendor/v8/build/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py
2109
- - vendor/v8/build/gyp/test/ninja/chained-dependency/chained-dependency.gyp
2110
- - vendor/v8/build/gyp/test/ninja/chained-dependency/chained.c
2111
- - vendor/v8/build/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py
2112
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/a.c
2113
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/a.h
2114
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp
2115
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/b.c
2116
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/b.h
2117
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/c.c
2118
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/c.h
2119
- - vendor/v8/build/gyp/test/ninja/action_dependencies/src/emit.py
2120
- - vendor/v8/build/gyp/test/multiple-targets/src/common.c
2121
- - vendor/v8/build/gyp/test/multiple-targets/src/multiple.gyp
2122
- - vendor/v8/build/gyp/test/multiple-targets/src/prog1.c
2123
- - vendor/v8/build/gyp/test/multiple-targets/src/prog2.c
2124
- - vendor/v8/build/gyp/test/msvs/config_attrs/gyptest-config_attrs.py
2125
- - vendor/v8/build/gyp/test/msvs/config_attrs/hello.c
2126
- - vendor/v8/build/gyp/test/msvs/config_attrs/hello.gyp
2127
- - vendor/v8/build/gyp/test/msvs/express/express.gyp
2128
- - vendor/v8/build/gyp/test/msvs/express/gyptest-express.py
2129
- - vendor/v8/build/gyp/test/msvs/list_excluded/gyptest-all.py
2130
- - vendor/v8/build/gyp/test/msvs/list_excluded/hello.cpp
2131
- - vendor/v8/build/gyp/test/msvs/list_excluded/hello_exclude.gyp
2132
- - vendor/v8/build/gyp/test/msvs/list_excluded/hello_mac.cpp
2133
- - vendor/v8/build/gyp/test/msvs/precompiled/gyptest-all.py
2134
- - vendor/v8/build/gyp/test/msvs/precompiled/hello.c
2135
- - vendor/v8/build/gyp/test/msvs/precompiled/hello.gyp
2136
- - vendor/v8/build/gyp/test/msvs/precompiled/hello2.c
2137
- - vendor/v8/build/gyp/test/msvs/precompiled/precomp.c
2138
- - vendor/v8/build/gyp/test/msvs/props/AppName.props
2139
- - vendor/v8/build/gyp/test/msvs/props/AppName.vsprops
2140
- - vendor/v8/build/gyp/test/msvs/props/gyptest-props.py
2141
- - vendor/v8/build/gyp/test/msvs/props/hello.c
2142
- - vendor/v8/build/gyp/test/msvs/props/hello.gyp
2143
- - vendor/v8/build/gyp/test/msvs/uldi2010/gyptest-all.py
2144
- - vendor/v8/build/gyp/test/msvs/uldi2010/hello.c
2145
- - vendor/v8/build/gyp/test/msvs/uldi2010/hello.gyp
2146
- - vendor/v8/build/gyp/test/msvs/uldi2010/hello2.c
2147
- - vendor/v8/build/gyp/test/msvs/express/base/base.gyp
2148
- - vendor/v8/build/gyp/test/module/src/lib1.c
2149
- - vendor/v8/build/gyp/test/module/src/lib2.c
2150
- - vendor/v8/build/gyp/test/module/src/module.gyp
2151
- - vendor/v8/build/gyp/test/module/src/program.c
2152
- - vendor/v8/build/gyp/test/make/noload/all.gyp
2153
- - vendor/v8/build/gyp/test/make/noload/main.c
2154
- - vendor/v8/build/gyp/test/make/noload/lib/shared.c
2155
- - vendor/v8/build/gyp/test/make/noload/lib/shared.gyp
2156
- - vendor/v8/build/gyp/test/make/noload/lib/shared.h
2157
- - vendor/v8/build/gyp/test/mac/app-bundle/empty.c
2158
- - vendor/v8/build/gyp/test/mac/app-bundle/test.gyp
2159
- - vendor/v8/build/gyp/test/mac/archs/my_file.cc
2160
- - vendor/v8/build/gyp/test/mac/archs/my_main_file.cc
2161
- - vendor/v8/build/gyp/test/mac/archs/test-archs-x86_64.gyp
2162
- - vendor/v8/build/gyp/test/mac/archs/test-no-archs.gyp
2163
- - vendor/v8/build/gyp/test/mac/copy-dylib/empty.c
2164
- - vendor/v8/build/gyp/test/mac/copy-dylib/test.gyp
2165
- - vendor/v8/build/gyp/test/mac/debuginfo/file.c
2166
- - vendor/v8/build/gyp/test/mac/debuginfo/test.gyp
2167
- - vendor/v8/build/gyp/test/mac/depend-on-bundle/bundle.c
2168
- - vendor/v8/build/gyp/test/mac/depend-on-bundle/executable.c
2169
- - vendor/v8/build/gyp/test/mac/depend-on-bundle/Info.plist
2170
- - vendor/v8/build/gyp/test/mac/depend-on-bundle/test.gyp
2171
- - vendor/v8/build/gyp/test/mac/framework/empty.c
2172
- - vendor/v8/build/gyp/test/mac/framework/framework.gyp
2173
- - vendor/v8/build/gyp/test/mac/infoplist-process/Info.plist
2174
- - vendor/v8/build/gyp/test/mac/infoplist-process/main.c
2175
- - vendor/v8/build/gyp/test/mac/infoplist-process/test1.gyp
2176
- - vendor/v8/build/gyp/test/mac/infoplist-process/test2.gyp
2177
- - vendor/v8/build/gyp/test/mac/infoplist-process/test3.gyp
2178
- - vendor/v8/build/gyp/test/mac/loadable-module/Info.plist
2179
- - vendor/v8/build/gyp/test/mac/loadable-module/module.c
2180
- - vendor/v8/build/gyp/test/mac/loadable-module/test.gyp
2181
- - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/file.c
2182
- - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Info.plist
2183
- - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist
2184
- - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/test.gyp
2185
- - vendor/v8/build/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist
2186
- - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/Info.plist
2187
- - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/main.c
2188
- - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/test.gyp
2189
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/empty.c
2190
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist
2191
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/main.c
2192
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh
2193
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/resource_file.sb
2194
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/test.gyp
2195
- - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist
2196
- - vendor/v8/build/gyp/test/mac/postbuild-defaults/Info.plist
2197
- - vendor/v8/build/gyp/test/mac/postbuild-defaults/main.c
2198
- - vendor/v8/build/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh
2199
- - vendor/v8/build/gyp/test/mac/postbuild-defaults/test.gyp
2200
- - vendor/v8/build/gyp/test/mac/postbuild-fail/file.c
2201
- - vendor/v8/build/gyp/test/mac/postbuild-fail/postbuild-fail.sh
2202
- - vendor/v8/build/gyp/test/mac/postbuild-fail/test.gyp
2203
- - vendor/v8/build/gyp/test/mac/postbuild-fail/touch-dynamic.sh
2204
- - vendor/v8/build/gyp/test/mac/postbuild-fail/touch-static.sh
2205
- - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/main.c
2206
- - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh
2207
- - vendor/v8/build/gyp/test/mac/postbuild-multiple-configurations/test.gyp
2208
- - vendor/v8/build/gyp/test/mac/postbuild-static-library/empty.c
2209
- - vendor/v8/build/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh
2210
- - vendor/v8/build/gyp/test/mac/postbuild-static-library/test.gyp
2211
- - vendor/v8/build/gyp/test/mac/postbuilds/file.c
2212
- - vendor/v8/build/gyp/test/mac/postbuilds/test.gyp
2213
- - vendor/v8/build/gyp/test/mac/prefixheader/file.c
2214
- - vendor/v8/build/gyp/test/mac/prefixheader/file.cc
2215
- - vendor/v8/build/gyp/test/mac/prefixheader/file.m
2216
- - vendor/v8/build/gyp/test/mac/prefixheader/file.mm
2217
- - vendor/v8/build/gyp/test/mac/prefixheader/header.h
2218
- - vendor/v8/build/gyp/test/mac/prefixheader/test.gyp
2219
- - vendor/v8/build/gyp/test/mac/rebuild/delay-touch.sh
2220
- - vendor/v8/build/gyp/test/mac/rebuild/empty.c
2221
- - vendor/v8/build/gyp/test/mac/rebuild/main.c
2222
- - vendor/v8/build/gyp/test/mac/rebuild/test.gyp
2223
- - vendor/v8/build/gyp/test/mac/rebuild/TestApp-Info.plist
2224
- - vendor/v8/build/gyp/test/mac/sdkroot/file.cc
2225
- - vendor/v8/build/gyp/test/mac/sdkroot/test.gyp
2226
- - vendor/v8/build/gyp/test/mac/sourceless-module/empty.c
2227
- - vendor/v8/build/gyp/test/mac/sourceless-module/test.gyp
2228
- - vendor/v8/build/gyp/test/mac/strip/file.c
2229
- - vendor/v8/build/gyp/test/mac/strip/strip.saves
2230
- - vendor/v8/build/gyp/test/mac/strip/test.gyp
2231
- - vendor/v8/build/gyp/test/mac/type_envvars/file.c
2232
- - vendor/v8/build/gyp/test/mac/type_envvars/test.gyp
2233
- - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_executable.sh
2234
- - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh
2235
- - vendor/v8/build/gyp/test/mac/type_envvars/test_bundle_shared_library.sh
2236
- - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_executable.sh
2237
- - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh
2238
- - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_none.sh
2239
- - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh
2240
- - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh
2241
- - vendor/v8/build/gyp/test/mac/xcode-env-order/Info.plist
2242
- - vendor/v8/build/gyp/test/mac/xcode-env-order/main.c
2243
- - vendor/v8/build/gyp/test/mac/xcode-env-order/test.gyp
2244
- - vendor/v8/build/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh
2245
- - vendor/v8/build/gyp/test/mac/postbuilds/script/static_library_postbuild.sh
2246
- - vendor/v8/build/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp
2247
- - vendor/v8/build/gyp/test/mac/libraries/subdir/hello.cc
2248
- - vendor/v8/build/gyp/test/mac/libraries/subdir/mylib.c
2249
- - vendor/v8/build/gyp/test/mac/libraries/subdir/README.txt
2250
- - vendor/v8/build/gyp/test/mac/libraries/subdir/test.gyp
2251
- - vendor/v8/build/gyp/test/mac/global-settings/src/dir1/dir1.gyp
2252
- - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/dir2.gyp
2253
- - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/file.txt
2254
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/Info.plist
2255
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVector.h
2256
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVector.mm
2257
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h
2258
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch
2259
- - vendor/v8/build/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings
2260
- - vendor/v8/build/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings
2261
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/main.m
2262
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist
2263
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h
2264
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m
2265
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings
2266
- - vendor/v8/build/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib
2267
- - vendor/v8/build/gyp/test/mac/action-envvars/action/action.gyp
2268
- - vendor/v8/build/gyp/test/mac/action-envvars/action/action.sh
2269
- - vendor/v8/build/gyp/test/library/src/lib1.c
2270
- - vendor/v8/build/gyp/test/library/src/lib1_moveable.c
2271
- - vendor/v8/build/gyp/test/library/src/lib2.c
2272
- - vendor/v8/build/gyp/test/library/src/lib2_moveable.c
2273
- - vendor/v8/build/gyp/test/library/src/library.gyp
2274
- - vendor/v8/build/gyp/test/library/src/program.c
2275
- - vendor/v8/build/gyp/test/library/src/shared_dependency.gyp
2276
- - vendor/v8/build/gyp/test/intermediate_dir/src/script.py
2277
- - vendor/v8/build/gyp/test/intermediate_dir/src/test.gyp
2278
- - vendor/v8/build/gyp/test/intermediate_dir/src/test2.gyp
2279
- - vendor/v8/build/gyp/test/include_dirs/src/inc.h
2280
- - vendor/v8/build/gyp/test/include_dirs/src/includes.c
2281
- - vendor/v8/build/gyp/test/include_dirs/src/includes.gyp
2282
- - vendor/v8/build/gyp/test/include_dirs/src/inc1/include1.h
2283
- - vendor/v8/build/gyp/test/include_dirs/src/shadow1/shadow.h
2284
- - vendor/v8/build/gyp/test/include_dirs/src/shadow2/shadow.h
2285
- - vendor/v8/build/gyp/test/include_dirs/src/subdir/inc.h
2286
- - vendor/v8/build/gyp/test/include_dirs/src/subdir/subdir_includes.c
2287
- - vendor/v8/build/gyp/test/include_dirs/src/subdir/subdir_includes.gyp
2288
- - vendor/v8/build/gyp/test/include_dirs/src/subdir/inc2/include2.h
2289
- - vendor/v8/build/gyp/test/home_dot_gyp/src/all.gyp
2290
- - vendor/v8/build/gyp/test/home_dot_gyp/src/printfoo.c
2291
- - vendor/v8/build/gyp/test/hard_dependency/src/a.c
2292
- - vendor/v8/build/gyp/test/hard_dependency/src/a.h
2293
- - vendor/v8/build/gyp/test/hard_dependency/src/b.c
2294
- - vendor/v8/build/gyp/test/hard_dependency/src/b.h
2295
- - vendor/v8/build/gyp/test/hard_dependency/src/c.c
2296
- - vendor/v8/build/gyp/test/hard_dependency/src/c.h
2297
- - vendor/v8/build/gyp/test/hard_dependency/src/d.c
2298
- - vendor/v8/build/gyp/test/hard_dependency/src/emit.py
2299
- - vendor/v8/build/gyp/test/hard_dependency/src/hard_dependency.gyp
2300
- - vendor/v8/build/gyp/test/generator-output/actions/actions.gyp
2301
- - vendor/v8/build/gyp/test/generator-output/copies/copies.gyp
2302
- - vendor/v8/build/gyp/test/generator-output/copies/file1
2303
- - vendor/v8/build/gyp/test/generator-output/copies/file2
2304
- - vendor/v8/build/gyp/test/generator-output/rules/copy-file.py
2305
- - vendor/v8/build/gyp/test/generator-output/rules/rules.gyp
2306
- - vendor/v8/build/gyp/test/generator-output/src/inc.h
2307
- - vendor/v8/build/gyp/test/generator-output/src/prog1.c
2308
- - vendor/v8/build/gyp/test/generator-output/src/prog1.gyp
2309
- - vendor/v8/build/gyp/test/generator-output/src/symroot.gypi
2310
- - vendor/v8/build/gyp/test/generator-output/src/build/README.txt
2311
- - vendor/v8/build/gyp/test/generator-output/src/inc1/include1.h
2312
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/prog2.c
2313
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/prog2.gyp
2314
- - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.c
2315
- - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.gyp
2316
- - vendor/v8/build/gyp/test/generator-output/src/subdir3/build/README.txt
2317
- - vendor/v8/build/gyp/test/generator-output/src/subdir3/inc3/include3.h
2318
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/build/README.txt
2319
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.c
2320
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp
2321
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/deeper.h
2322
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/inc2/include2.h
2323
- - vendor/v8/build/gyp/test/generator-output/src/subdir2/deeper/build/README.txt
2324
- - vendor/v8/build/gyp/test/generator-output/rules/build/README.txt
2325
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/define3.in0
2326
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/define4.in0
2327
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/executable.gyp
2328
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/function1.in1
2329
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/function2.in1
2330
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/program.c
2331
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file1.in0
2332
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file2.in0
2333
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file3.in1
2334
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/file4.in1
2335
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/none.gyp
2336
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/build/README.txt
2337
- - vendor/v8/build/gyp/test/generator-output/rules/subdir2/rules-out/README.txt
2338
- - vendor/v8/build/gyp/test/generator-output/rules/subdir1/build/README.txt
2339
- - vendor/v8/build/gyp/test/generator-output/copies/build/README.txt
2340
- - vendor/v8/build/gyp/test/generator-output/copies/copies-out/README.txt
2341
- - vendor/v8/build/gyp/test/generator-output/copies/subdir/file3
2342
- - vendor/v8/build/gyp/test/generator-output/copies/subdir/file4
2343
- - vendor/v8/build/gyp/test/generator-output/copies/subdir/subdir.gyp
2344
- - vendor/v8/build/gyp/test/generator-output/copies/subdir/build/README.txt
2345
- - vendor/v8/build/gyp/test/generator-output/copies/subdir/copies-out/README.txt
2346
- - vendor/v8/build/gyp/test/generator-output/actions/build/README.txt
2347
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/executable.gyp
2348
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/make-prog1.py
2349
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/make-prog2.py
2350
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/program.c
2351
- - vendor/v8/build/gyp/test/generator-output/actions/subdir2/make-file.py
2352
- - vendor/v8/build/gyp/test/generator-output/actions/subdir2/none.gyp
2353
- - vendor/v8/build/gyp/test/generator-output/actions/subdir2/actions-out/README.txt
2354
- - vendor/v8/build/gyp/test/generator-output/actions/subdir2/build/README.txt
2355
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/actions-out/README.txt
2356
- - vendor/v8/build/gyp/test/generator-output/actions/subdir1/build/README.txt
2357
- - vendor/v8/build/gyp/test/dependency-copy/src/copies.gyp
2358
- - vendor/v8/build/gyp/test/dependency-copy/src/file1.c
2359
- - vendor/v8/build/gyp/test/dependency-copy/src/file2.c
2360
- - vendor/v8/build/gyp/test/dependencies/b/b.c
2361
- - vendor/v8/build/gyp/test/dependencies/b/b.gyp
2362
- - vendor/v8/build/gyp/test/dependencies/b/b3.c
2363
- - vendor/v8/build/gyp/test/dependencies/c/c.c
2364
- - vendor/v8/build/gyp/test/dependencies/c/c.gyp
2365
- - vendor/v8/build/gyp/test/dependencies/c/d.c
2366
- - vendor/v8/build/gyp/test/copies/src/copies-slash.gyp
2367
- - vendor/v8/build/gyp/test/copies/src/copies.gyp
2368
- - vendor/v8/build/gyp/test/copies/src/file1
2369
- - vendor/v8/build/gyp/test/copies/src/file2
2370
- - vendor/v8/build/gyp/test/copies/src/directory/file3
2371
- - vendor/v8/build/gyp/test/copies/src/directory/file4
2372
- - vendor/v8/build/gyp/test/copies/src/parentdir/subdir/file6
2373
- - vendor/v8/build/gyp/test/copies/src/directory/subdir/file5
2374
- - vendor/v8/build/gyp/test/configurations/basics/configurations.c
2375
- - vendor/v8/build/gyp/test/configurations/basics/configurations.gyp
2376
- - vendor/v8/build/gyp/test/configurations/basics/gyptest-configurations.py
2377
- - vendor/v8/build/gyp/test/configurations/inheritance/configurations.c
2378
- - vendor/v8/build/gyp/test/configurations/inheritance/configurations.gyp
2379
- - vendor/v8/build/gyp/test/configurations/inheritance/gyptest-inheritance.py
2380
- - vendor/v8/build/gyp/test/configurations/invalid/actions.gyp
2381
- - vendor/v8/build/gyp/test/configurations/invalid/all_dependent_settings.gyp
2382
- - vendor/v8/build/gyp/test/configurations/invalid/configurations.gyp
2383
- - vendor/v8/build/gyp/test/configurations/invalid/dependencies.gyp
2384
- - vendor/v8/build/gyp/test/configurations/invalid/direct_dependent_settings.gyp
2385
- - vendor/v8/build/gyp/test/configurations/invalid/gyptest-configurations.py
2386
- - vendor/v8/build/gyp/test/configurations/invalid/libraries.gyp
2387
- - vendor/v8/build/gyp/test/configurations/invalid/link_settings.gyp
2388
- - vendor/v8/build/gyp/test/configurations/invalid/sources.gyp
2389
- - vendor/v8/build/gyp/test/configurations/invalid/target_name.gyp
2390
- - vendor/v8/build/gyp/test/configurations/invalid/type.gyp
2391
- - vendor/v8/build/gyp/test/configurations/target_platform/configurations.gyp
2392
- - vendor/v8/build/gyp/test/configurations/target_platform/front.c
2393
- - vendor/v8/build/gyp/test/configurations/target_platform/gyptest-target_platform.py
2394
- - vendor/v8/build/gyp/test/configurations/target_platform/left.c
2395
- - vendor/v8/build/gyp/test/configurations/target_platform/right.c
2396
- - vendor/v8/build/gyp/test/configurations/x64/configurations.c
2397
- - vendor/v8/build/gyp/test/configurations/x64/configurations.gyp
2398
- - vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
2399
- - vendor/v8/build/gyp/test/compilable/src/headers.gyp
2400
- - vendor/v8/build/gyp/test/compilable/src/lib1.cpp
2401
- - vendor/v8/build/gyp/test/compilable/src/lib1.hpp
2402
- - vendor/v8/build/gyp/test/compilable/src/program.cpp
2403
- - vendor/v8/build/gyp/test/builddir/src/builddir.gypi
2404
- - vendor/v8/build/gyp/test/builddir/src/func1.c
2405
- - vendor/v8/build/gyp/test/builddir/src/func2.c
2406
- - vendor/v8/build/gyp/test/builddir/src/func3.c
2407
- - vendor/v8/build/gyp/test/builddir/src/func4.c
2408
- - vendor/v8/build/gyp/test/builddir/src/func5.c
2409
- - vendor/v8/build/gyp/test/builddir/src/prog1.c
2410
- - vendor/v8/build/gyp/test/builddir/src/prog1.gyp
2411
- - vendor/v8/build/gyp/test/builddir/src/subdir2/prog2.c
2412
- - vendor/v8/build/gyp/test/builddir/src/subdir2/prog2.gyp
2413
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/prog3.c
2414
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp
2415
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c
2416
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp
2417
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c
2418
- - vendor/v8/build/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp
2419
- - vendor/v8/build/gyp/test/assembly/src/as.bat
2420
- - vendor/v8/build/gyp/test/assembly/src/assembly.gyp
2421
- - vendor/v8/build/gyp/test/assembly/src/lib1.c
2422
- - vendor/v8/build/gyp/test/assembly/src/lib1.S
2423
- - vendor/v8/build/gyp/test/assembly/src/program.c
2424
- - vendor/v8/build/gyp/test/additional-targets/src/all.gyp
2425
- - vendor/v8/build/gyp/test/additional-targets/src/dir1/actions.gyp
2426
- - vendor/v8/build/gyp/test/additional-targets/src/dir1/emit.py
2427
- - vendor/v8/build/gyp/test/additional-targets/src/dir1/lib1.c
2428
- - vendor/v8/build/gyp/test/actions-subdir/src/make-file.py
2429
- - vendor/v8/build/gyp/test/actions-subdir/src/none.gyp
2430
- - vendor/v8/build/gyp/test/actions-subdir/src/subdir/make-subdir-file.py
2431
- - vendor/v8/build/gyp/test/actions-subdir/src/subdir/subdir.gyp
2432
- - vendor/v8/build/gyp/test/actions-multiple/src/actions.gyp
2433
- - vendor/v8/build/gyp/test/actions-multiple/src/copy.py
2434
- - vendor/v8/build/gyp/test/actions-multiple/src/filter.py
2435
- - vendor/v8/build/gyp/test/actions-multiple/src/foo.c
2436
- - vendor/v8/build/gyp/test/actions-multiple/src/input.txt
2437
- - vendor/v8/build/gyp/test/actions-multiple/src/main.c
2438
- - vendor/v8/build/gyp/test/actions-bare/src/bare.gyp
2439
- - vendor/v8/build/gyp/test/actions-bare/src/bare.py
2440
- - vendor/v8/build/gyp/test/actions/src/action_missing_name.gyp
2441
- - vendor/v8/build/gyp/test/actions/src/actions.gyp
2442
- - vendor/v8/build/gyp/test/actions/src/confirm-dep-files.py
2443
- - vendor/v8/build/gyp/test/actions/src/subdir1/counter.py
2444
- - vendor/v8/build/gyp/test/actions/src/subdir1/executable.gyp
2445
- - vendor/v8/build/gyp/test/actions/src/subdir1/make-prog1.py
2446
- - vendor/v8/build/gyp/test/actions/src/subdir1/make-prog2.py
2447
- - vendor/v8/build/gyp/test/actions/src/subdir1/program.c
2448
- - vendor/v8/build/gyp/test/actions/src/subdir2/make-file.py
2449
- - vendor/v8/build/gyp/test/actions/src/subdir2/none.gyp
2450
- - vendor/v8/build/gyp/test/actions/src/subdir3/generate_main.py
2451
- - vendor/v8/build/gyp/test/actions/src/subdir3/null_input.gyp
2452
- - vendor/v8/build/gyp/pylib/gyp/__init__.py
2453
- - vendor/v8/build/gyp/pylib/gyp/common.py
2454
- - vendor/v8/build/gyp/pylib/gyp/easy_xml.py
2455
- - vendor/v8/build/gyp/pylib/gyp/easy_xml_test.py
2456
- - vendor/v8/build/gyp/pylib/gyp/input.py
2457
- - vendor/v8/build/gyp/pylib/gyp/mac_tool.py
2458
- - vendor/v8/build/gyp/pylib/gyp/msvs_emulation.py
2459
- - vendor/v8/build/gyp/pylib/gyp/MSVSNew.py
2460
- - vendor/v8/build/gyp/pylib/gyp/MSVSProject.py
2461
- - vendor/v8/build/gyp/pylib/gyp/MSVSSettings.py
2462
- - vendor/v8/build/gyp/pylib/gyp/MSVSSettings_test.py
2463
- - vendor/v8/build/gyp/pylib/gyp/MSVSToolFile.py
2464
- - vendor/v8/build/gyp/pylib/gyp/MSVSUserFile.py
2465
- - vendor/v8/build/gyp/pylib/gyp/MSVSVersion.py
2466
- - vendor/v8/build/gyp/pylib/gyp/ninja_syntax.py
2467
- - vendor/v8/build/gyp/pylib/gyp/SCons.py
2468
- - vendor/v8/build/gyp/pylib/gyp/sun_tool.py
2469
- - vendor/v8/build/gyp/pylib/gyp/system_test.py
2470
- - vendor/v8/build/gyp/pylib/gyp/win_tool.py
2471
- - vendor/v8/build/gyp/pylib/gyp/xcode_emulation.py
2472
- - vendor/v8/build/gyp/pylib/gyp/xcodeproj_file.py
2473
- - vendor/v8/build/gyp/pylib/gyp/xml_fix.py
2474
- - vendor/v8/build/gyp/pylib/gyp/generator/__init__.py
2475
- - vendor/v8/build/gyp/pylib/gyp/generator/dump_dependency_json.py
2476
- - vendor/v8/build/gyp/pylib/gyp/generator/gypd.py
2477
- - vendor/v8/build/gyp/pylib/gyp/generator/gypsh.py
2478
- - vendor/v8/build/gyp/pylib/gyp/generator/make.py
2479
- - vendor/v8/build/gyp/pylib/gyp/generator/msvs.py
2480
- - vendor/v8/build/gyp/pylib/gyp/generator/msvs_test.py
2481
- - vendor/v8/build/gyp/pylib/gyp/generator/ninja.py
2482
- - vendor/v8/build/gyp/pylib/gyp/generator/ninja_test.py
2483
- - vendor/v8/build/gyp/pylib/gyp/generator/scons.py
2484
- - vendor/v8/build/gyp/pylib/gyp/generator/xcode.py
2493
+ - vendor/v8/build/gyp/tools/graphviz.py
2494
+ - vendor/v8/build/gyp/tools/pretty_gyp.py
2495
+ - vendor/v8/build/gyp/tools/pretty_sln.py
2496
+ - vendor/v8/build/gyp/tools/pretty_vcproj.py
2497
+ - vendor/v8/build/gyp/tools/README
2498
+ - vendor/v8/build/gyp/tools/Xcode/README
2499
+ - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.pbfilespec
2500
+ - vendor/v8/build/gyp/tools/Xcode/Specifications/gyp.xclangspec
2485
2501
  homepage: http://github.com/cowboyd/libv8
2486
2502
  licenses: []
2487
-
2488
2503
  post_install_message:
2489
2504
  rdoc_options: []
2490
-
2491
- require_paths:
2505
+ require_paths:
2492
2506
  - lib
2493
2507
  - ext
2494
- required_ruby_version: !ruby/object:Gem::Requirement
2508
+ required_ruby_version: !ruby/object:Gem::Requirement
2495
2509
  none: false
2496
- requirements:
2497
- - - ">="
2498
- - !ruby/object:Gem::Version
2499
- hash: 2002549777813010636
2500
- segments:
2510
+ requirements:
2511
+ - - ! '>='
2512
+ - !ruby/object:Gem::Version
2513
+ version: '0'
2514
+ segments:
2501
2515
  - 0
2502
- version: "0"
2503
- required_rubygems_version: !ruby/object:Gem::Requirement
2516
+ hash: -3958606741126822656
2517
+ required_rubygems_version: !ruby/object:Gem::Requirement
2504
2518
  none: false
2505
- requirements:
2506
- - - ">="
2507
- - !ruby/object:Gem::Version
2508
- hash: 2002549777813010636
2509
- segments:
2519
+ requirements:
2520
+ - - ! '>='
2521
+ - !ruby/object:Gem::Version
2522
+ version: '0'
2523
+ segments:
2510
2524
  - 0
2511
- version: "0"
2525
+ hash: -3958606741126822656
2512
2526
  requirements: []
2513
-
2514
2527
  rubyforge_project: libv8
2515
- rubygems_version: 1.8.12
2528
+ rubygems_version: 1.8.24
2516
2529
  signing_key:
2517
2530
  specification_version: 3
2518
2531
  summary: Distribution of the V8 JavaScript engine
2519
2532
  test_files: []
2520
-