libv8 5.7.492.65.1 → 5.9.211.38.0beta0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (297) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +8 -2
  4. data/CHANGELOG.md +4 -0
  5. data/README.md +4 -3
  6. data/Rakefile +27 -10
  7. data/ext/libv8/builder.rb +4 -0
  8. data/lib/libv8/version.rb +1 -1
  9. data/libv8.gemspec +1 -1
  10. data/patches/0001-Build-a-standalone-static-library.patch +5 -5
  11. data/patches/0002-Don-t-compile-unnecessary-stuff.patch +20 -24
  12. data/patches/0003-Use-the-fPIC-flag-for-the-static-library.patch +5 -5
  13. data/patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch +5 -5
  14. data/patches/0005-Fix-GCC-7-build-errors.patch +147 -0
  15. data/scaleway.png +0 -0
  16. data/vendor/depot_tools/.gitattributes +52 -0
  17. data/vendor/depot_tools/.gitignore +10 -0
  18. data/vendor/depot_tools/README.md +7 -3
  19. data/vendor/depot_tools/apply_issue.bat +4 -3
  20. data/vendor/depot_tools/apply_issue.py +0 -10
  21. data/vendor/depot_tools/autoninja +12 -0
  22. data/vendor/depot_tools/autoninja.bat +9 -0
  23. data/vendor/depot_tools/autoninja.py +70 -0
  24. data/vendor/depot_tools/bootstrap/win/README.md +108 -26
  25. data/vendor/depot_tools/bootstrap/win/git-bash.template.sh +3 -3
  26. data/vendor/depot_tools/bootstrap/win/git.template.bat +2 -2
  27. data/vendor/depot_tools/bootstrap/win/manifest.txt +18 -0
  28. data/vendor/depot_tools/bootstrap/win/manifest_bleeding_edge.txt +18 -0
  29. data/vendor/depot_tools/bootstrap/win/python27.new.bat +49 -0
  30. data/vendor/depot_tools/bootstrap/win/win_tools.bat +55 -59
  31. data/vendor/depot_tools/bootstrap/win/win_tools.py +335 -0
  32. data/vendor/depot_tools/cipd +16 -2
  33. data/vendor/depot_tools/cipd.bat +20 -2
  34. data/vendor/depot_tools/cipd.ps1 +36 -22
  35. data/vendor/depot_tools/cipd_bin_setup.bat +6 -0
  36. data/vendor/depot_tools/cipd_bin_setup.sh +10 -0
  37. data/vendor/depot_tools/cipd_client_version +1 -1
  38. data/vendor/depot_tools/cipd_manifest.txt +9 -0
  39. data/vendor/depot_tools/cit.bat +12 -11
  40. data/vendor/depot_tools/clang-format.bat +4 -3
  41. data/vendor/depot_tools/clang_format_merge_driver.bat +12 -11
  42. data/vendor/depot_tools/commit_queue.bat +4 -3
  43. data/vendor/depot_tools/cpplint.bat +9 -3
  44. data/vendor/depot_tools/cpplint.py +3 -3
  45. data/vendor/depot_tools/depot-tools-auth.bat +4 -3
  46. data/vendor/depot_tools/download_from_google_storage.bat +5 -3
  47. data/vendor/depot_tools/download_from_google_storage.py +6 -1
  48. data/vendor/depot_tools/fetch.bat +5 -4
  49. data/vendor/depot_tools/fetch.py +4 -5
  50. data/vendor/depot_tools/gclient-new-workdir.py +82 -46
  51. data/vendor/depot_tools/gclient.bat +5 -4
  52. data/vendor/depot_tools/gclient.py +713 -319
  53. data/vendor/depot_tools/gclient_eval.py +284 -0
  54. data/vendor/depot_tools/gclient_utils.py +70 -4
  55. data/vendor/depot_tools/gerrit_client.py +26 -1
  56. data/vendor/depot_tools/gerrit_util.py +120 -127
  57. data/vendor/depot_tools/git-crrev-parse +1 -0
  58. data/vendor/depot_tools/git-gs +1 -1
  59. data/vendor/depot_tools/git_cl.py +731 -415
  60. data/vendor/depot_tools/git_common.py +23 -3
  61. data/vendor/depot_tools/git_drover.py +10 -1
  62. data/vendor/depot_tools/git_footers.py +62 -22
  63. data/vendor/depot_tools/git_hyper_blame.py +3 -2
  64. data/vendor/depot_tools/git_map.py +30 -3
  65. data/vendor/depot_tools/git_map_branches.py +18 -4
  66. data/vendor/depot_tools/git_number.py +8 -2
  67. data/vendor/depot_tools/git_retry.py +21 -0
  68. data/vendor/depot_tools/gn.bat +4 -3
  69. data/vendor/depot_tools/infra/config/cq.cfg +1 -5
  70. data/vendor/depot_tools/infra/config/recipes.cfg +18 -16
  71. data/vendor/depot_tools/led +12 -0
  72. data/vendor/depot_tools/led.bat +7 -0
  73. data/vendor/depot_tools/man/html/git-cl.html +9 -1
  74. data/vendor/depot_tools/man/html/git-drover.html +22 -18
  75. data/vendor/depot_tools/man/man1/git-cl.1 +8 -3
  76. data/vendor/depot_tools/man/man1/git-drover.1 +22 -20
  77. data/vendor/depot_tools/man/src/git-cl.txt +3 -0
  78. data/vendor/depot_tools/man/src/git-drover.txt +8 -0
  79. data/vendor/depot_tools/my_activity.py +8 -5
  80. data/vendor/depot_tools/owners.py +103 -11
  81. data/vendor/depot_tools/owners_finder.py +14 -2
  82. data/vendor/depot_tools/presubmit_canned_checks.py +25 -67
  83. data/vendor/depot_tools/presubmit_support.py +87 -35
  84. data/vendor/depot_tools/recipes/OWNERS +2 -0
  85. data/vendor/depot_tools/recipes/README.recipes.md +842 -0
  86. data/vendor/depot_tools/recipes/recipe_modules/bot_update/__init__.py +5 -3
  87. data/vendor/depot_tools/recipes/recipe_modules/bot_update/api.py +181 -60
  88. data/vendor/depot_tools/recipes/recipe_modules/bot_update/{example.expected → examples/full.expected}/apply_gerrit_ref.json +4 -2
  89. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic.json +82 -0
  90. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic_with_branch_heads.json +149 -0
  91. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/buildbot.json +82 -0
  92. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/clobber.json +149 -0
  93. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/deprecated_got_revision_mapping.json +122 -0
  94. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_rebase_patch_ref.json +149 -0
  95. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_reset.json +149 -0
  96. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_shallow.json +149 -0
  97. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/reset_root_solution_revision.json +148 -0
  98. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange.json +150 -0
  99. data/vendor/depot_tools/recipes/recipe_modules/bot_update/{example.expected → examples/full.expected}/trychange_oauth2.json +0 -0
  100. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_buildbot.json +152 -0
  101. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_json.json +150 -0
  102. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_json_win.json +150 -0
  103. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob.json +156 -0
  104. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail.json +91 -0
  105. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch.json +118 -0
  106. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch_download.json +118 -0
  107. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle.json +202 -0
  108. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle_deprecated.json +158 -0
  109. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_feature_branch.json +196 -0
  110. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8.json +202 -0
  111. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8_feature_branch.json +202 -0
  112. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8.json +162 -0
  113. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8_head_by_default.json +162 -0
  114. data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_tags.json +149 -0
  115. data/vendor/depot_tools/recipes/recipe_modules/bot_update/{example.py → examples/full.py} +46 -8
  116. data/vendor/depot_tools/recipes/recipe_modules/bot_update/resources/bot_update.py +139 -133
  117. data/vendor/depot_tools/recipes/recipe_modules/bot_update/test_api.py +25 -13
  118. data/vendor/depot_tools/recipes/recipe_modules/cipd/api.py +40 -9
  119. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/basic.json +0 -0
  120. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/basic_pkg.json +1 -1
  121. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/describe-failed.json +0 -0
  122. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/describe-many-instances.json +0 -0
  123. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/mac64.json +0 -0
  124. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/pkg_bad_file.json +1 -1
  125. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/pkg_bad_mode.json +0 -0
  126. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/pkg_bad_verfile.json +0 -0
  127. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.expected → examples/full.expected}/win64.json +0 -0
  128. data/vendor/depot_tools/recipes/recipe_modules/cipd/{example.py → examples/full.py} +1 -0
  129. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/junk arch.json +7 -0
  130. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/junk bits.json +7 -0
  131. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_arm_32.json +14 -0
  132. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_arm_64.json +14 -0
  133. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_intel_32.json +14 -0
  134. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_intel_64.json +14 -0
  135. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_mips_64.json +14 -0
  136. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/mac_intel_64.json +14 -0
  137. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/win_intel_32.json +14 -0
  138. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/win_intel_64.json +14 -0
  139. data/vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.py +59 -0
  140. data/vendor/depot_tools/recipes/recipe_modules/depot_tools/api.py +5 -0
  141. data/vendor/depot_tools/recipes/recipe_modules/depot_tools/{example.expected → examples/full.expected}/basic.json +7 -0
  142. data/vendor/depot_tools/recipes/recipe_modules/depot_tools/{example.expected → examples/full.expected}/win.json +7 -0
  143. data/vendor/depot_tools/recipes/recipe_modules/depot_tools/{example.py → examples/full.py} +2 -0
  144. data/vendor/depot_tools/recipes/recipe_modules/gclient/__init__.py +1 -4
  145. data/vendor/depot_tools/recipes/recipe_modules/gclient/api.py +28 -14
  146. data/vendor/depot_tools/recipes/recipe_modules/gclient/config.py +10 -235
  147. data/vendor/depot_tools/recipes/recipe_modules/gclient/{example.expected → examples/full.expected}/basic.json +9 -9
  148. data/vendor/depot_tools/recipes/recipe_modules/gclient/{example.expected → examples/full.expected}/buildbot.json +9 -9
  149. data/vendor/depot_tools/recipes/recipe_modules/gclient/{example.expected → examples/full.expected}/revision.json +9 -9
  150. data/vendor/depot_tools/recipes/recipe_modules/gclient/{example.expected → examples/full.expected}/tryserver.json +9 -9
  151. data/vendor/depot_tools/recipes/recipe_modules/gclient/{example.py → examples/full.py} +5 -21
  152. data/vendor/depot_tools/recipes/recipe_modules/gclient/tests/patch_project.py +45 -0
  153. data/vendor/depot_tools/recipes/recipe_modules/gerrit/__init__.py +1 -0
  154. data/vendor/depot_tools/recipes/recipe_modules/gerrit/api.py +97 -2
  155. data/vendor/depot_tools/recipes/recipe_modules/gerrit/examples/full.expected/basic.json +283 -0
  156. data/vendor/depot_tools/recipes/recipe_modules/gerrit/{example.py → examples/full.py} +31 -2
  157. data/vendor/depot_tools/recipes/recipe_modules/gerrit/test_api.py +30 -1
  158. data/vendor/depot_tools/recipes/recipe_modules/git/__init__.py +1 -4
  159. data/vendor/depot_tools/recipes/recipe_modules/git/api.py +7 -35
  160. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic.json +3 -3
  161. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic_branch.json +3 -3
  162. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic_file_name.json +3 -3
  163. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic_hash.json +3 -3
  164. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic_ref.json +3 -3
  165. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/basic_submodule_update_force.json +3 -3
  166. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/can_fail_build.json +1 -1
  167. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/cannot_fail_build.json +3 -3
  168. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/cat-file_test.json +3 -3
  169. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/count-objects_delta.json +3 -3
  170. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/count-objects_failed.json +3 -3
  171. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/count-objects_with_bad_output.json +3 -3
  172. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/count-objects_with_bad_output_fails_build.json +1 -1
  173. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/curl_trace_file.json +3 -3
  174. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/git-cache-checkout.json +6 -6
  175. data/vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/platform_win.json +223 -0
  176. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/rebase_failed.json +3 -3
  177. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/remote_not_origin.json +3 -3
  178. data/vendor/depot_tools/recipes/recipe_modules/git/{example.expected → examples/full.expected}/set_got_revision.json +3 -3
  179. data/vendor/depot_tools/recipes/recipe_modules/git/{example.py → examples/full.py} +2 -1
  180. data/vendor/depot_tools/recipes/recipe_modules/git/resources/git_setup.py +12 -21
  181. data/vendor/depot_tools/recipes/recipe_modules/git_cl/__init__.py +1 -4
  182. data/vendor/depot_tools/recipes/recipe_modules/git_cl/api.py +13 -11
  183. data/vendor/depot_tools/recipes/recipe_modules/git_cl/{example.expected → examples/full.expected}/basic.json +0 -0
  184. data/vendor/depot_tools/recipes/recipe_modules/git_cl/{example.py → examples/full.py} +4 -2
  185. data/vendor/depot_tools/recipes/recipe_modules/gitiles/OWNERS +3 -0
  186. data/vendor/depot_tools/recipes/recipe_modules/gitiles/__init__.py +7 -0
  187. data/vendor/depot_tools/recipes/recipe_modules/gitiles/api.py +135 -0
  188. data/vendor/depot_tools/recipes/recipe_modules/gitiles/examples/full.expected/basic.json +537 -0
  189. data/vendor/depot_tools/recipes/recipe_modules/gitiles/examples/full.py +61 -0
  190. data/vendor/depot_tools/recipes/recipe_modules/gitiles/resources/gerrit_client.py +192 -0
  191. data/vendor/depot_tools/recipes/recipe_modules/gitiles/test_api.py +95 -0
  192. data/vendor/depot_tools/recipes/recipe_modules/gsutil/{example.expected → examples/full.expected}/basic.json +0 -0
  193. data/vendor/depot_tools/recipes/recipe_modules/gsutil/{example.py → examples/full.py} +0 -0
  194. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/__init__.py +0 -3
  195. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/basic.json +3 -2
  196. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/paths_buildbot_linux.json +3 -2
  197. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/paths_buildbot_mac.json +3 -2
  198. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/paths_buildbot_win.json +3 -2
  199. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/paths_generic_linux.json +3 -2
  200. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.expected → examples/full.expected}/paths_generic_mac.json +3 -2
  201. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_generic_win.json +16 -0
  202. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_linux.json +16 -0
  203. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_mac.json +16 -0
  204. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_win.json +16 -0
  205. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/{example.py → examples/full.py} +2 -1
  206. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/path_config.py +12 -3
  207. data/vendor/depot_tools/recipes/recipe_modules/presubmit/__init__.py +1 -0
  208. data/vendor/depot_tools/recipes/recipe_modules/presubmit/api.py +2 -2
  209. data/vendor/depot_tools/recipes/recipe_modules/presubmit/{example.expected → examples/full.expected}/basic.json +1 -1
  210. data/vendor/depot_tools/recipes/recipe_modules/presubmit/{example.py → examples/full.py} +0 -0
  211. data/vendor/depot_tools/recipes/recipe_modules/rietveld/__init__.py +0 -4
  212. data/vendor/depot_tools/recipes/recipe_modules/rietveld/{example.expected → examples/full.expected}/basic.json +0 -0
  213. data/vendor/depot_tools/recipes/recipe_modules/rietveld/{example.expected → examples/full.expected}/buildbot.json +0 -0
  214. data/vendor/depot_tools/recipes/recipe_modules/rietveld/examples/full.expected/no_auth.json +27 -0
  215. data/vendor/depot_tools/recipes/recipe_modules/rietveld/{example.py → examples/full.py} +9 -1
  216. data/vendor/depot_tools/recipes/recipe_modules/tryserver/__init__.py +3 -5
  217. data/vendor/depot_tools/recipes/recipe_modules/tryserver/api.py +21 -96
  218. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/basic_tags.json +0 -0
  219. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/set_failure_hash_with_no_steps.json +0 -0
  220. data/vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch.json +56 -0
  221. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected/with_gerrit_patch_deprecated.json → examples/full.expected/with_git_patch.json} +2 -2
  222. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected/with_gerrit_patch.json → examples/full.expected/with_git_patch_luci.json} +2 -2
  223. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/with_rietveld_patch.json +0 -20
  224. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/with_rietveld_patch_new.json +0 -20
  225. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/with_wrong_patch.json +1 -13
  226. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.expected → examples/full.expected}/with_wrong_patch_new.json +1 -13
  227. data/vendor/depot_tools/recipes/recipe_modules/tryserver/{example.py → examples/full.py} +3 -17
  228. data/vendor/depot_tools/recipes/recipes.py +141 -96
  229. data/vendor/depot_tools/rietveld.py +8 -1
  230. data/vendor/depot_tools/roll-dep-svn.bat +12 -10
  231. data/vendor/depot_tools/roll-dep.bat +5 -3
  232. data/vendor/depot_tools/scm.py +8 -1
  233. data/vendor/depot_tools/setup_color.py +0 -0
  234. data/vendor/depot_tools/split_cl.py +193 -0
  235. data/vendor/depot_tools/third_party/schema/.editorconfig +15 -0
  236. data/vendor/depot_tools/third_party/schema/.gitignore +174 -0
  237. data/vendor/depot_tools/third_party/schema/.travis.yml +37 -0
  238. data/vendor/depot_tools/third_party/schema/LICENSE-MIT +19 -0
  239. data/vendor/depot_tools/third_party/schema/MANIFEST.in +1 -0
  240. data/vendor/depot_tools/third_party/schema/README.chromium +12 -0
  241. data/vendor/depot_tools/third_party/schema/README.rst +382 -0
  242. data/vendor/depot_tools/third_party/schema/__init__.py +1 -0
  243. data/vendor/depot_tools/third_party/schema/schema.py +338 -0
  244. data/vendor/depot_tools/third_party/schema/setup.cfg +5 -0
  245. data/vendor/depot_tools/third_party/schema/setup.py +30 -0
  246. data/vendor/depot_tools/third_party/schema/test_schema.py +556 -0
  247. data/vendor/depot_tools/third_party/schema/tox.ini +33 -0
  248. data/vendor/depot_tools/third_party/upload.py +4 -0
  249. data/vendor/depot_tools/update_depot_tools +4 -16
  250. data/vendor/depot_tools/update_depot_tools.bat +4 -17
  251. data/vendor/depot_tools/update_depot_tools_toggle.py +38 -0
  252. data/vendor/depot_tools/vpython +12 -0
  253. data/vendor/depot_tools/vpython.bat +7 -0
  254. data/vendor/depot_tools/win_toolchain/get_toolchain_if_necessary.py +17 -5
  255. data/vendor/depot_tools/win_toolchain/package_from_installed.py +63 -33
  256. metadata +161 -113
  257. data/vendor/depot_tools/bootstrap/gclient.bat +0 -22
  258. data/vendor/depot_tools/bootstrap/win/get_file.js +0 -119
  259. data/vendor/depot_tools/bootstrap/win/git_bootstrap.py +0 -193
  260. data/vendor/depot_tools/bootstrap/win/git_version.txt +0 -1
  261. data/vendor/depot_tools/bootstrap/win/git_version_bleeding_edge.txt +0 -1
  262. data/vendor/depot_tools/bootstrap/win/python276.new.bat +0 -8
  263. data/vendor/depot_tools/bootstrap/win/svn.new.bat +0 -4
  264. data/vendor/depot_tools/bootstrap/win/svnversion.new.bat +0 -4
  265. data/vendor/depot_tools/bootstrap/win/unzip.js +0 -91
  266. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic.json +0 -53
  267. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic_output_manifest.json +0 -60
  268. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic_with_branch_heads.json +0 -54
  269. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/buildbot.json +0 -53
  270. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/clobber.json +0 -54
  271. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/gerrit_no_rebase_patch_ref.json +0 -54
  272. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/gerrit_no_reset.json +0 -54
  273. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/no_shallow.json +0 -54
  274. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/reset_root_solution_revision.json +0 -53
  275. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange.json +0 -55
  276. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_buildbot.json +0 -57
  277. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_json.json +0 -55
  278. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_json_win.json +0 -55
  279. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob.json +0 -59
  280. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail.json +0 -62
  281. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail_patch.json +0 -83
  282. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json +0 -84
  283. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_gerrit_angle.json +0 -60
  284. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_gerrit_angle_deprecated.json +0 -60
  285. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_v8.json +0 -62
  286. data/vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_v8_head_by_default.json +0 -62
  287. data/vendor/depot_tools/recipes/recipe_modules/gclient/bundle_extra_paths.txt +0 -4
  288. data/vendor/depot_tools/recipes/recipe_modules/gerrit/example.expected/basic.json +0 -66
  289. data/vendor/depot_tools/recipes/recipe_modules/git/bundle_extra_paths.txt +0 -28
  290. data/vendor/depot_tools/recipes/recipe_modules/git/example.expected/platform_win.json +0 -237
  291. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_win.json +0 -15
  292. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_linux.json +0 -15
  293. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_mac.json +0 -15
  294. data/vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_win.json +0 -15
  295. data/vendor/depot_tools/recipes/recipe_modules/presubmit/bundle_extra_paths.txt +0 -30
  296. data/vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_git_patch.json +0 -109
  297. data/vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_git_patch_luci.json +0 -8
@@ -0,0 +1,33 @@
1
+ # Tox (http://tox.testrun.org/) is a tool for running tests in
2
+ # multiple virtualenvs. This configuration file will run the
3
+ # test suite on all supported python versions. To use it, "pip
4
+ # install tox" and then run "tox" from this directory.
5
+
6
+ [tox]
7
+ envlist = py26, py27, py32, py33, py34, py35, pypy, pypy3, coverage, pep8
8
+
9
+ [testenv]
10
+ commands = py.test
11
+ deps = pytest
12
+
13
+
14
+ [testenv:py27]
15
+ commands = py.test --doctest-glob=README.rst # test documentation
16
+ deps = pytest
17
+
18
+ [testenv:pep8]
19
+ # pep8 disabled for E701 (multiple statements on one line) and E126 (continuation line over-indented for hanging indent)
20
+ commands = flake8 --max-line-length=90 --show-source -v --count --ignore=E701,E126
21
+ deps = flake8
22
+
23
+ [testenv:coverage]
24
+ #TODO: how to force this on py27?
25
+ commands = coverage erase
26
+ py.test --doctest-glob=README.rst --cov schema
27
+ coverage report -m
28
+ deps = pytest
29
+ pytest-cov
30
+ coverage
31
+
32
+ [flake8]
33
+ exclude=.venv,.git,.tox
@@ -1373,6 +1373,10 @@ class GitVCS(VersionControlSystem):
1373
1373
  self.renames = {}
1374
1374
 
1375
1375
  def GetGUID(self):
1376
+ remote, retcode = RunShellWithReturnCode(
1377
+ "git config remote.origin.url".split())
1378
+ if not retcode:
1379
+ return remote.strip()
1376
1380
  revlist = RunShell("git rev-list --parents HEAD".split()).splitlines()
1377
1381
  # M-A: Return the 1st root hash, there could be multiple when a
1378
1382
  # subtree is merged. In that case, more analysis would need to
@@ -39,6 +39,10 @@ else
39
39
  fi
40
40
  fi
41
41
 
42
+ if [ -e $base_dir/.disable_auto_update ]; then
43
+ exit
44
+ fi
45
+
42
46
  # We want to update the bundled tools even under MinGW.
43
47
  if [ $MINGW = 0 ]; then
44
48
  $COMSPEC /c `cygpath -w "$base_dir/bootstrap/win/win_tools.bat"`
@@ -115,20 +119,4 @@ then
115
119
  cd - > /dev/null
116
120
  fi
117
121
 
118
- # We're on POSIX. We can now safely look for svn checkout.
119
- if [ "X$DEPOT_TOOLS_UPDATE" != "X0" -a -e "$base_dir/.svn" ]
120
- then
121
- echo "========================"
122
- echo "WARNING: You have an SVN checkout of depot_tools!"
123
- echo
124
- echo "depot_tools has migrated to Git. You are"
125
- echo "NO LONGER RECEIVING UPDATES to depot_tools."
126
- echo
127
- echo "You must follow these instructions[1] to get a Git copy of depot_tools."
128
- echo
129
- echo "[1]: https://www.chromium.org/developers/how-tos/install-depot-tools"
130
- echo "========================"
131
- return 1
132
- fi
133
-
134
122
  find "$base_dir" -iname "*.pyc" -exec rm -f {} \;
@@ -19,9 +19,11 @@ IF "%~nx0"=="update_depot_tools.bat" (
19
19
  set DEPOT_TOOLS_DIR=%~1
20
20
  SHIFT
21
21
 
22
+ IF EXIST "%DEPOT_TOOLS_DIR%.disable_auto_update" GOTO :EOF
23
+
22
24
  set GIT_URL=https://chromium.googlesource.com/chromium/tools/depot_tools.git
23
25
 
24
- :: Will download git, svn and python.
26
+ :: Will download git and python.
25
27
  call "%DEPOT_TOOLS_DIR%bootstrap\win\win_tools.bat"
26
28
  if errorlevel 1 goto :EOF
27
29
  :: Now clear errorlevel so it can be set by other programs later.
@@ -30,27 +32,12 @@ set errorlevel=
30
32
  :: Shall skip automatic update?
31
33
  IF "%DEPOT_TOOLS_UPDATE%" == "0" GOTO :EOF
32
34
 
33
- :: We need either .\.svn\. or .\.git\. to be able to sync.
34
- IF EXIST "%DEPOT_TOOLS_DIR%.svn\." GOTO :SVN_UPDATE
35
+ :: We need .\.git\. to be able to sync.
35
36
  IF EXIST "%DEPOT_TOOLS_DIR%.git\." GOTO :GIT_UPDATE
36
37
  echo Error updating depot_tools, no revision tool found.
37
38
  goto :EOF
38
39
 
39
40
 
40
- :SVN_UPDATE
41
- echo ========================
42
- echo WARNING: You have an SVN checkout of depot_tools!
43
- echo.
44
- echo depot_tools has migrated to Git. You are
45
- echo NO LONGER RECEIVING UPDATES to depot_tools.
46
- echo.
47
- echo You must follow these instructions[1] to get a Git copy of depot_tools.
48
- echo.
49
- echo [1]: https://www.chromium.org/developers/how-tos/install-depot-tools
50
- echo ========================
51
- goto :EOF
52
-
53
-
54
41
  :GIT_UPDATE
55
42
  cd /d "%DEPOT_TOOLS_DIR%."
56
43
  call git config remote.origin.fetch > NUL
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env python
2
+ # Copyright (c) 2017 The Chromium Authors. All rights reserved.
3
+ # Use of this source code is governed by a BSD-style license that can be
4
+ # found in the LICENSE file.
5
+
6
+ """Small utility script to enable/disable `depot_tools` automatic updating."""
7
+
8
+ import argparse
9
+ import datetime
10
+ import os
11
+ import sys
12
+
13
+
14
+ DEPOT_TOOLS_ROOT = os.path.abspath(os.path.dirname(__file__))
15
+ SENTINEL_PATH = os.path.join(DEPOT_TOOLS_ROOT, '.disable_auto_update')
16
+
17
+
18
+ def main():
19
+ parser = argparse.ArgumentParser()
20
+ group = parser.add_mutually_exclusive_group(required=True)
21
+ group.add_argument('--enable', action='store_true',
22
+ help='Enable auto-updating.')
23
+ group.add_argument('--disable', action='store_true',
24
+ help='Disable auto-updating.')
25
+ args = parser.parse_args()
26
+
27
+ if args.enable:
28
+ if os.path.exists(SENTINEL_PATH):
29
+ os.unlink(SENTINEL_PATH)
30
+ if args.disable:
31
+ if not os.path.exists(SENTINEL_PATH):
32
+ with open(SENTINEL_PATH, 'w') as fd:
33
+ fd.write('Disabled by %s at %s\n' % (__file__, datetime.datetime.now()))
34
+ return 0
35
+
36
+
37
+ if __name__ == '__main__':
38
+ sys.exit(main())
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ # Copyright 2017 The Chromium Authors. All rights reserved.
4
+ # Use of this source code is governed by a BSD-style license that can be
5
+ # found in the LICENSE file.
6
+
7
+ MYPATH=$(dirname "${BASH_SOURCE[0]}")
8
+
9
+ source "$MYPATH/cipd_bin_setup.sh"
10
+ cipd_bin_setup
11
+
12
+ exec "$MYPATH/.cipd_bin/vpython" "$@"
@@ -0,0 +1,7 @@
1
+ @echo off
2
+ :: Copyright 2017 The Chromium Authors. All rights reserved.
3
+ :: Use of this source code is governed by a BSD-style license that can be
4
+ :: found in the LICENSE file.
5
+
6
+ call "%~dp0\cipd_bin_setup.bat"
7
+ "%~dp0\.cipd_bin\vpython.exe" %*
@@ -38,6 +38,10 @@ import tempfile
38
38
  import time
39
39
  import zipfile
40
40
 
41
+ # Environment variable that, if set, specifies the default Visual Studio
42
+ # toolchain root directory to use.
43
+ ENV_TOOLCHAIN_ROOT = 'DEPOT_TOOLS_WIN_TOOLCHAIN_ROOT'
44
+
41
45
  # winreg isn't natively available under CygWin
42
46
  if sys.platform == "win32":
43
47
  try:
@@ -374,7 +378,8 @@ def EnableCrashDumpCollection():
374
378
  if sys.platform == 'win32' and os.environ.get('CHROME_HEADLESS') == '1':
375
379
  key_name = r'SOFTWARE\Microsoft\Windows\Windows Error Reporting'
376
380
  try:
377
- key = winreg.CreateKey(winreg.HKEY_LOCAL_MACHINE, key_name)
381
+ key = winreg.CreateKeyEx(winreg.HKEY_LOCAL_MACHINE, key_name, 0,
382
+ winreg.KEY_WOW64_64KEY | winreg.KEY_ALL_ACCESS)
378
383
  # Merely creating LocalDumps is sufficient to enable the defaults.
379
384
  winreg.CreateKey(key, "LocalDumps")
380
385
  # Disable the WER UI, as documented here:
@@ -393,6 +398,9 @@ def main():
393
398
  help='write information about toolchain to FILE')
394
399
  parser.add_option('--force', action='store_true',
395
400
  help='force script to run on non-Windows hosts')
401
+ parser.add_option('--toolchain-dir',
402
+ default=os.getenv(ENV_TOOLCHAIN_ROOT, BASEDIR),
403
+ help='directory to install toolchain into')
396
404
  options, args = parser.parse_args()
397
405
 
398
406
  if not (sys.platform.startswith(('cygwin', 'win32')) or options.force):
@@ -414,14 +422,18 @@ def main():
414
422
  sys.exit('Desired hash is required.')
415
423
  desired_hash = args[0]
416
424
 
425
+ # Create our toolchain destination and "chdir" to it.
426
+ toolchain_dir = os.path.abspath(options.toolchain_dir)
427
+ if not os.path.isdir(toolchain_dir):
428
+ os.makedirs(toolchain_dir)
429
+ os.chdir(toolchain_dir)
430
+
417
431
  # Move to depot_tools\win_toolchain where we'll store our files, and where
418
432
  # the downloader script is.
419
- os.chdir(os.path.normpath(os.path.join(BASEDIR)))
420
- toolchain_dir = '.'
421
433
  if os.environ.get('GYP_MSVS_VERSION') == '2013':
422
- target_dir = os.path.normpath(os.path.join(toolchain_dir, 'vs2013_files'))
434
+ target_dir = 'vs2013_files'
423
435
  else:
424
- target_dir = os.path.normpath(os.path.join(toolchain_dir, 'vs_files'))
436
+ target_dir = 'vs_files'
425
437
  if not os.path.isdir(target_dir):
426
438
  os.mkdir(target_dir)
427
439
  toolchain_target_dir = os.path.join(target_dir, desired_hash)
@@ -28,6 +28,7 @@ import optparse
28
28
  import os
29
29
  import platform
30
30
  import shutil
31
+ import subprocess
31
32
  import sys
32
33
  import tempfile
33
34
  import zipfile
@@ -39,6 +40,33 @@ VS_VERSION = None
39
40
  WIN_VERSION = None
40
41
  VC_TOOLS = None
41
42
 
43
+
44
+ def GetVSPath():
45
+ if VS_VERSION == '2015':
46
+ return r'C:\Program Files (x86)\Microsoft Visual Studio 14.0'
47
+ elif VS_VERSION == '2017':
48
+ # Use vswhere to find the VS 2017 installation. This handles preview
49
+ # versions automatically. This assumes that only one version is installed.
50
+ command = (r'C:\Program Files (x86)\Microsoft Visual Studio\Installer'
51
+ r'\vswhere.exe')
52
+ marker = 'installationPath: '
53
+ for line in subprocess.check_output(command).splitlines():
54
+ if line.startswith(marker):
55
+ return line[len(marker):]
56
+ raise Exception('VS 2017 path not found in vswhere output')
57
+ else:
58
+ raise ValueError(VS_VERSION)
59
+
60
+
61
+ def ExpandWildcards(root, sub_dir):
62
+ # normpath is needed to change '/' to '\\' characters.
63
+ path = os.path.normpath(os.path.join(root, sub_dir))
64
+ matches = glob.glob(path)
65
+ if len(matches) != 1:
66
+ raise Exception('%s had %d matches - should be one' % (path, len(matches)))
67
+ return matches[0]
68
+
69
+
42
70
  def BuildFileList(override_dir):
43
71
  result = []
44
72
 
@@ -83,40 +111,35 @@ def BuildFileList(override_dir):
83
111
  ]
84
112
  elif VS_VERSION == '2017':
85
113
  paths += [
86
- ('VC/redist/MSVC/14.10.25008/x86/Microsoft.VC150.CRT', 'sys32'),
87
- ('VC/redist/MSVC/14.10.25008/x86/Microsoft.VC150.CRT', 'win_sdk/bin/x86'),
88
- ('VC/redist/MSVC/14.10.25017/x86/Microsoft.VC150.MFC', 'sys32'),
89
- ('VC/redist/MSVC/14.10.25008/debug_nonredist/x86/Microsoft.VC150.DebugCRT', 'sys32'),
90
- ('VC/redist/MSVC/14.10.25017/debug_nonredist/x86/Microsoft.VC150.DebugMFC', 'sys32'),
91
- ('VC/redist/MSVC/14.10.25008/x64/Microsoft.VC150.CRT', 'sys64'),
92
- ('VC/redist/MSVC/14.10.25008/x64/Microsoft.VC150.CRT', 'VC/bin/amd64_x86'),
93
- ('VC/redist/MSVC/14.10.25008/x64/Microsoft.VC150.CRT', 'VC/bin/amd64'),
94
- ('VC/redist/MSVC/14.10.25008/x64/Microsoft.VC150.CRT', 'win_sdk/bin/x64'),
95
- ('VC/redist/MSVC/14.10.25017/x64/Microsoft.VC150.MFC', 'sys64'),
96
- ('VC/redist/MSVC/14.10.25008/debug_nonredist/x64/Microsoft.VC150.DebugCRT', 'sys64'),
97
- ('VC/redist/MSVC/14.10.25017/debug_nonredist/x64/Microsoft.VC150.DebugMFC', 'sys64'),
114
+ ('VC/redist/MSVC/14.*.*/x86/Microsoft.VC*.CRT', 'sys32'),
115
+ ('VC/redist/MSVC/14.*.*/x86/Microsoft.VC*.CRT', 'win_sdk/bin/x86'),
116
+ ('VC/redist/MSVC/14.*.*/debug_nonredist/x86/Microsoft.VC*.DebugCRT', 'sys32'),
117
+ ('VC/redist/MSVC/14.*.*/x64/Microsoft.VC*.CRT', 'sys64'),
118
+ ('VC/redist/MSVC/14.*.*/x64/Microsoft.VC*.CRT', 'VC/bin/amd64_x86'),
119
+ ('VC/redist/MSVC/14.*.*/x64/Microsoft.VC*.CRT', 'VC/bin/amd64'),
120
+ ('VC/redist/MSVC/14.*.*/x64/Microsoft.VC*.CRT', 'win_sdk/bin/x64'),
121
+ ('VC/redist/MSVC/14.*.*/debug_nonredist/x64/Microsoft.VC*.DebugCRT', 'sys64'),
98
122
  ]
99
123
  else:
100
124
  raise ValueError('VS_VERSION %s' % VS_VERSION)
101
125
 
102
- if VS_VERSION == '2015':
103
- vs_path = r'C:\Program Files (x86)\Microsoft Visual Studio 14.0'
104
- elif VS_VERSION == '2017':
105
- vs_path = r'C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional'
106
- else:
107
- assert ValueError(VS_VERSION)
126
+ vs_path = GetVSPath()
108
127
 
109
128
  for path in paths:
110
129
  src = path[0] if isinstance(path, tuple) else path
111
130
  # Note that vs_path is ignored if src is an absolute path.
112
- # normpath is needed to change '/' to '\\' characters.
113
- combined = os.path.normpath(os.path.join(vs_path, src))
131
+ combined = ExpandWildcards(vs_path, src)
114
132
  if not os.path.exists(combined):
115
133
  raise Exception('%s missing.' % combined)
116
134
  if not os.path.isdir(combined):
117
135
  raise Exception('%s not a directory.' % combined)
118
136
  for root, _, files in os.walk(combined):
119
137
  for f in files:
138
+ # vctip.exe doesn't shutdown, leaving locks on directories. It's
139
+ # optional so let's avoid this problem by not packaging it.
140
+ # https://crbug.com/735226
141
+ if f.lower() =='vctip.exe':
142
+ continue
120
143
  final_from = os.path.normpath(os.path.join(root, f))
121
144
  if isinstance(path, tuple):
122
145
  assert final_from.startswith(combined)
@@ -128,24 +151,28 @@ def BuildFileList(override_dir):
128
151
  dest = final_from[len(vs_path) + 1:]
129
152
  result.append((final_from, dest))
130
153
 
131
- # Just copy the whole SDK.
132
154
  sdk_path = r'C:\Program Files (x86)\Windows Kits\10'
133
155
  for root, _, files in os.walk(sdk_path):
134
156
  for f in files:
135
157
  combined = os.path.normpath(os.path.join(root, f))
136
158
  # Some of the files in this directory are exceedingly long (and exceed
137
- #_MAX_PATH for any moderately long root), so exclude them. We don't need
138
- # them anyway. Exclude the Windows Performance Toolkit just to save space.
159
+ # _MAX_PATH for any moderately long root), so exclude them. We don't need
160
+ # them anyway. Exclude others just to save space.
139
161
  tail = combined[len(sdk_path) + 1:]
140
- if (tail.startswith('References\\') or
141
- tail.startswith('Windows Performance Toolkit\\')):
162
+ skip_dir = False
163
+ for dir in ['References\\', 'Windows Performance Toolkit\\', 'Testing\\',
164
+ 'App Certification Kit\\', 'Extension SDKs\\']:
165
+ if tail.startswith(dir):
166
+ skip_dir = True
167
+ if skip_dir:
142
168
  continue
143
- # There may be many Include\Lib\Source directories for many different
169
+ # There may be many Include\Lib\Source\bin directories for many different
144
170
  # versions of Windows and packaging them all wastes ~450 MB
145
171
  # (uncompressed) per version and wastes time. Only copy the specified
146
- # version.
172
+ # version. Note that the SDK version number started being part of the bin
173
+ # path with 10.0.15063.0.
147
174
  if (tail.startswith('Include\\') or tail.startswith('Lib\\') or
148
- tail.startswith('Source\\')):
175
+ tail.startswith('Source\\') or tail.startswith('bin\\')):
149
176
  if tail.count(WIN_VERSION) == 0:
150
177
  continue
151
178
  to = os.path.join('win_sdk', tail)
@@ -238,7 +265,7 @@ def GenerateSetEnvCmd(target_dir):
238
265
  if VS_VERSION == '2017':
239
266
  env_x86 = collections.OrderedDict([
240
267
  ('PATH', [
241
- ['..', '..', 'win_sdk', 'bin', 'x64'],
268
+ ['..', '..', 'win_sdk', 'bin', WIN_VERSION, 'x64'],
242
269
  ['..', '..'] + vc_tools_parts + ['bin', 'HostX64', 'x86'],
243
270
  ['..', '..'] + vc_tools_parts + ['bin', 'HostX64', 'x64'], # Needed for mspdb1x0.dll.
244
271
  ]),
@@ -252,7 +279,7 @@ def GenerateSetEnvCmd(target_dir):
252
279
  else:
253
280
  env_x86 = collections.OrderedDict([
254
281
  ('PATH', [
255
- ['..', '..', 'win_sdk', 'bin', 'x86'],
282
+ ['..', '..', 'win_sdk', 'bin', WIN_VERSION, 'x86'],
256
283
  ['..', '..', 'VC', 'bin', 'amd64_x86'],
257
284
  ['..', '..', 'VC', 'bin', 'amd64'], # Needed for mspdb1x0.dll.
258
285
  ]),
@@ -267,7 +294,7 @@ def GenerateSetEnvCmd(target_dir):
267
294
  if VS_VERSION == '2017':
268
295
  env_x64 = collections.OrderedDict([
269
296
  ('PATH', [
270
- ['..', '..', 'win_sdk', 'bin', 'x64'],
297
+ ['..', '..', 'win_sdk', 'bin', WIN_VERSION, 'x64'],
271
298
  ['..', '..'] + vc_tools_parts + ['bin', 'HostX64', 'x64'],
272
299
  ]),
273
300
  ('LIB', [
@@ -280,7 +307,7 @@ def GenerateSetEnvCmd(target_dir):
280
307
  else:
281
308
  env_x64 = collections.OrderedDict([
282
309
  ('PATH', [
283
- ['..', '..', 'win_sdk', 'bin', 'x64'],
310
+ ['..', '..', 'win_sdk', 'bin', WIN_VERSION, 'x64'],
284
311
  ['..', '..', 'VC', 'bin', 'amd64'],
285
312
  ]),
286
313
  ('LIB', [
@@ -389,7 +416,10 @@ def main():
389
416
  WIN_VERSION = options.winver
390
417
  global VC_TOOLS
391
418
  if VS_VERSION == '2017':
392
- VC_TOOLS = 'VC/Tools/MSVC/14.10.25017'
419
+ vs_path = GetVSPath()
420
+ temp_tools_path = ExpandWildcards(vs_path, 'VC/Tools/MSVC/14.*.*')
421
+ # Strip off the leading vs_path characters and switch back to / separators.
422
+ VC_TOOLS = temp_tools_path[len(vs_path) + 1:].replace('\\', '/')
393
423
  else:
394
424
  VC_TOOLS = 'VC'
395
425
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.7.492.65.1
4
+ version: 5.9.211.38.0beta0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lowell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-18 00:00:00.000000000 Z
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '11'
19
+ version: '12'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '11'
26
+ version: '12'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake-compiler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -89,7 +89,9 @@ files:
89
89
  - patches/0002-Don-t-compile-unnecessary-stuff.patch
90
90
  - patches/0003-Use-the-fPIC-flag-for-the-static-library.patch
91
91
  - patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch
92
+ - patches/0005-Fix-GCC-7-build-errors.patch
92
93
  - patches/mingw-generate-makefiles.sh
94
+ - scaleway.png
93
95
  - spec/compiler/apple_llvm_spec.rb
94
96
  - spec/compiler/clang_spec.rb
95
97
  - spec/compiler/gcc_spec.rb
@@ -99,6 +101,7 @@ files:
99
101
  - spec/spec_helper.rb
100
102
  - spec/support/compiler_helpers.rb
101
103
  - thefrontside.png
104
+ - vendor/depot_tools/.gitattributes
102
105
  - vendor/depot_tools/.gitignore
103
106
  - vendor/depot_tools/.style.yapf
104
107
  - vendor/depot_tools/LICENSE
@@ -115,21 +118,19 @@ files:
115
118
  - vendor/depot_tools/apply_issue.bat
116
119
  - vendor/depot_tools/apply_issue.py
117
120
  - vendor/depot_tools/auth.py
118
- - vendor/depot_tools/bootstrap/gclient.bat
121
+ - vendor/depot_tools/autoninja
122
+ - vendor/depot_tools/autoninja.bat
123
+ - vendor/depot_tools/autoninja.py
119
124
  - vendor/depot_tools/bootstrap/win/README.md
120
- - vendor/depot_tools/bootstrap/win/get_file.js
121
125
  - vendor/depot_tools/bootstrap/win/git-bash.template.sh
122
126
  - vendor/depot_tools/bootstrap/win/git.template.bat
123
- - vendor/depot_tools/bootstrap/win/git_bootstrap.py
124
- - vendor/depot_tools/bootstrap/win/git_version.txt
125
- - vendor/depot_tools/bootstrap/win/git_version_bleeding_edge.txt
127
+ - vendor/depot_tools/bootstrap/win/manifest.txt
128
+ - vendor/depot_tools/bootstrap/win/manifest_bleeding_edge.txt
126
129
  - vendor/depot_tools/bootstrap/win/profile.d.python.sh
127
130
  - vendor/depot_tools/bootstrap/win/pylint.new.bat
128
- - vendor/depot_tools/bootstrap/win/python276.new.bat
129
- - vendor/depot_tools/bootstrap/win/svn.new.bat
130
- - vendor/depot_tools/bootstrap/win/svnversion.new.bat
131
- - vendor/depot_tools/bootstrap/win/unzip.js
131
+ - vendor/depot_tools/bootstrap/win/python27.new.bat
132
132
  - vendor/depot_tools/bootstrap/win/win_tools.bat
133
+ - vendor/depot_tools/bootstrap/win/win_tools.py
133
134
  - vendor/depot_tools/breakpad.py
134
135
  - vendor/depot_tools/buildbucket.py
135
136
  - vendor/depot_tools/cbuildbot
@@ -138,7 +139,10 @@ files:
138
139
  - vendor/depot_tools/cipd
139
140
  - vendor/depot_tools/cipd.bat
140
141
  - vendor/depot_tools/cipd.ps1
142
+ - vendor/depot_tools/cipd_bin_setup.bat
143
+ - vendor/depot_tools/cipd_bin_setup.sh
141
144
  - vendor/depot_tools/cipd_client_version
145
+ - vendor/depot_tools/cipd_manifest.txt
142
146
  - vendor/depot_tools/cit
143
147
  - vendor/depot_tools/cit.bat
144
148
  - vendor/depot_tools/cit.py
@@ -200,6 +204,7 @@ files:
200
204
  - vendor/depot_tools/gclient.bat
201
205
  - vendor/depot_tools/gclient.py
202
206
  - vendor/depot_tools/gclient_completion.sh
207
+ - vendor/depot_tools/gclient_eval.py
203
208
  - vendor/depot_tools/gclient_scm.py
204
209
  - vendor/depot_tools/gclient_utils.py
205
210
  - vendor/depot_tools/gerrit_client.py
@@ -275,6 +280,8 @@ files:
275
280
  - vendor/depot_tools/infra/config/README.md
276
281
  - vendor/depot_tools/infra/config/cq.cfg
277
282
  - vendor/depot_tools/infra/config/recipes.cfg
283
+ - vendor/depot_tools/led
284
+ - vendor/depot_tools/led.bat
278
285
  - vendor/depot_tools/man/html/depot_tools.html
279
286
  - vendor/depot_tools/man/html/depot_tools_tutorial.html
280
287
  - vendor/depot_tools/man/html/git-cherry-pick-upload.html
@@ -403,142 +410,166 @@ files:
403
410
  - vendor/depot_tools/pylint.py
404
411
  - vendor/depot_tools/pylintrc
405
412
  - vendor/depot_tools/python_runner.sh
413
+ - vendor/depot_tools/recipes/OWNERS
414
+ - vendor/depot_tools/recipes/README.recipes.md
406
415
  - vendor/depot_tools/recipes/recipe_modules/OWNERS
407
416
  - vendor/depot_tools/recipes/recipe_modules/bot_update/__init__.py
408
417
  - vendor/depot_tools/recipes/recipe_modules/bot_update/api.py
409
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/apply_gerrit_ref.json
410
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic.json
411
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic_output_manifest.json
412
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/basic_with_branch_heads.json
413
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/buildbot.json
414
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/clobber.json
415
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/gerrit_no_rebase_patch_ref.json
416
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/gerrit_no_reset.json
417
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/no_shallow.json
418
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/reset_root_solution_revision.json
419
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange.json
420
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2.json
421
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_buildbot.json
422
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_json.json
423
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/trychange_oauth2_json_win.json
424
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob.json
425
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail.json
426
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail_patch.json
427
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json
428
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_gerrit_angle.json
429
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_gerrit_angle_deprecated.json
430
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_v8.json
431
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.expected/tryjob_v8_head_by_default.json
432
- - vendor/depot_tools/recipes/recipe_modules/bot_update/example.py
418
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/apply_gerrit_ref.json
419
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic.json
420
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic_with_branch_heads.json
421
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/buildbot.json
422
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/clobber.json
423
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/deprecated_got_revision_mapping.json
424
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_rebase_patch_ref.json
425
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_reset.json
426
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_shallow.json
427
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/reset_root_solution_revision.json
428
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange.json
429
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2.json
430
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_buildbot.json
431
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_json.json
432
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/trychange_oauth2_json_win.json
433
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob.json
434
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail.json
435
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch.json
436
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch_download.json
437
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle.json
438
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle_deprecated.json
439
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_feature_branch.json
440
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8.json
441
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8_feature_branch.json
442
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8.json
443
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8_head_by_default.json
444
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_tags.json
445
+ - vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.py
433
446
  - vendor/depot_tools/recipes/recipe_modules/bot_update/resources/__init__.py
434
447
  - vendor/depot_tools/recipes/recipe_modules/bot_update/resources/apply_gerrit.py
435
448
  - vendor/depot_tools/recipes/recipe_modules/bot_update/resources/bot_update.py
436
449
  - vendor/depot_tools/recipes/recipe_modules/bot_update/test_api.py
437
450
  - vendor/depot_tools/recipes/recipe_modules/cipd/__init__.py
438
451
  - vendor/depot_tools/recipes/recipe_modules/cipd/api.py
439
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/basic.json
440
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/basic_pkg.json
441
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/describe-failed.json
442
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/describe-many-instances.json
443
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/mac64.json
444
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_file.json
445
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_mode.json
446
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/pkg_bad_verfile.json
447
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.expected/win64.json
448
- - vendor/depot_tools/recipes/recipe_modules/cipd/example.py
452
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/basic.json
453
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/basic_pkg.json
454
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/describe-failed.json
455
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/describe-many-instances.json
456
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/mac64.json
457
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/pkg_bad_file.json
458
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/pkg_bad_mode.json
459
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/pkg_bad_verfile.json
460
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.expected/win64.json
461
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/full.py
462
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/junk
463
+ arch.json
464
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/junk
465
+ bits.json
466
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_arm_32.json
467
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_arm_64.json
468
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_intel_32.json
469
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_intel_64.json
470
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/linux_mips_64.json
471
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/mac_intel_64.json
472
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/win_intel_32.json
473
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.expected/win_intel_64.json
474
+ - vendor/depot_tools/recipes/recipe_modules/cipd/examples/platform_suffix.py
449
475
  - vendor/depot_tools/recipes/recipe_modules/cipd/test_api.py
450
476
  - vendor/depot_tools/recipes/recipe_modules/depot_tools/__init__.py
451
477
  - vendor/depot_tools/recipes/recipe_modules/depot_tools/api.py
452
- - vendor/depot_tools/recipes/recipe_modules/depot_tools/example.expected/basic.json
453
- - vendor/depot_tools/recipes/recipe_modules/depot_tools/example.expected/win.json
454
- - vendor/depot_tools/recipes/recipe_modules/depot_tools/example.py
478
+ - vendor/depot_tools/recipes/recipe_modules/depot_tools/examples/full.expected/basic.json
479
+ - vendor/depot_tools/recipes/recipe_modules/depot_tools/examples/full.expected/win.json
480
+ - vendor/depot_tools/recipes/recipe_modules/depot_tools/examples/full.py
455
481
  - vendor/depot_tools/recipes/recipe_modules/gclient/__init__.py
456
482
  - vendor/depot_tools/recipes/recipe_modules/gclient/api.py
457
- - vendor/depot_tools/recipes/recipe_modules/gclient/bundle_extra_paths.txt
458
483
  - vendor/depot_tools/recipes/recipe_modules/gclient/config.py
459
- - vendor/depot_tools/recipes/recipe_modules/gclient/example.expected/basic.json
460
- - vendor/depot_tools/recipes/recipe_modules/gclient/example.expected/buildbot.json
461
- - vendor/depot_tools/recipes/recipe_modules/gclient/example.expected/revision.json
462
- - vendor/depot_tools/recipes/recipe_modules/gclient/example.expected/tryserver.json
463
- - vendor/depot_tools/recipes/recipe_modules/gclient/example.py
484
+ - vendor/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/basic.json
485
+ - vendor/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/buildbot.json
486
+ - vendor/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/revision.json
487
+ - vendor/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/tryserver.json
488
+ - vendor/depot_tools/recipes/recipe_modules/gclient/examples/full.py
464
489
  - vendor/depot_tools/recipes/recipe_modules/gclient/test_api.py
490
+ - vendor/depot_tools/recipes/recipe_modules/gclient/tests/patch_project.py
465
491
  - vendor/depot_tools/recipes/recipe_modules/gerrit/__init__.py
466
492
  - vendor/depot_tools/recipes/recipe_modules/gerrit/api.py
467
- - vendor/depot_tools/recipes/recipe_modules/gerrit/example.expected/basic.json
468
- - vendor/depot_tools/recipes/recipe_modules/gerrit/example.py
493
+ - vendor/depot_tools/recipes/recipe_modules/gerrit/examples/full.expected/basic.json
494
+ - vendor/depot_tools/recipes/recipe_modules/gerrit/examples/full.py
469
495
  - vendor/depot_tools/recipes/recipe_modules/gerrit/test_api.py
470
496
  - vendor/depot_tools/recipes/recipe_modules/git/__init__.py
471
497
  - vendor/depot_tools/recipes/recipe_modules/git/api.py
472
- - vendor/depot_tools/recipes/recipe_modules/git/bundle_extra_paths.txt
473
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic.json
474
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic_branch.json
475
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic_file_name.json
476
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic_hash.json
477
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic_ref.json
478
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/basic_submodule_update_force.json
479
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/can_fail_build.json
480
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/cannot_fail_build.json
481
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/cat-file_test.json
482
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/count-objects_delta.json
483
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/count-objects_failed.json
484
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/count-objects_with_bad_output.json
485
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/count-objects_with_bad_output_fails_build.json
486
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/curl_trace_file.json
487
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/git-cache-checkout.json
488
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/platform_win.json
489
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/rebase_failed.json
490
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/remote_not_origin.json
491
- - vendor/depot_tools/recipes/recipe_modules/git/example.expected/set_got_revision.json
492
- - vendor/depot_tools/recipes/recipe_modules/git/example.py
498
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic.json
499
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_branch.json
500
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_file_name.json
501
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_hash.json
502
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_ref.json
503
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_submodule_update_force.json
504
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/can_fail_build.json
505
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/cannot_fail_build.json
506
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/cat-file_test.json
507
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_delta.json
508
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_failed.json
509
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output.json
510
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output_fails_build.json
511
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/curl_trace_file.json
512
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-cache-checkout.json
513
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/platform_win.json
514
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/rebase_failed.json
515
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/remote_not_origin.json
516
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.expected/set_got_revision.json
517
+ - vendor/depot_tools/recipes/recipe_modules/git/examples/full.py
493
518
  - vendor/depot_tools/recipes/recipe_modules/git/resources/git_setup.py
494
519
  - vendor/depot_tools/recipes/recipe_modules/git/test_api.py
495
520
  - vendor/depot_tools/recipes/recipe_modules/git_cl/__init__.py
496
521
  - vendor/depot_tools/recipes/recipe_modules/git_cl/api.py
497
522
  - vendor/depot_tools/recipes/recipe_modules/git_cl/config.py
498
- - vendor/depot_tools/recipes/recipe_modules/git_cl/example.expected/basic.json
499
- - vendor/depot_tools/recipes/recipe_modules/git_cl/example.py
523
+ - vendor/depot_tools/recipes/recipe_modules/git_cl/examples/full.expected/basic.json
524
+ - vendor/depot_tools/recipes/recipe_modules/git_cl/examples/full.py
525
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/OWNERS
526
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/__init__.py
527
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/api.py
528
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/examples/full.expected/basic.json
529
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/examples/full.py
530
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/resources/gerrit_client.py
531
+ - vendor/depot_tools/recipes/recipe_modules/gitiles/test_api.py
500
532
  - vendor/depot_tools/recipes/recipe_modules/gsutil/__init__.py
501
533
  - vendor/depot_tools/recipes/recipe_modules/gsutil/api.py
502
- - vendor/depot_tools/recipes/recipe_modules/gsutil/example.expected/basic.json
503
- - vendor/depot_tools/recipes/recipe_modules/gsutil/example.py
534
+ - vendor/depot_tools/recipes/recipe_modules/gsutil/examples/full.expected/basic.json
535
+ - vendor/depot_tools/recipes/recipe_modules/gsutil/examples/full.py
504
536
  - vendor/depot_tools/recipes/recipe_modules/gsutil/resources/gsutil_smart_retry.py
505
537
  - vendor/depot_tools/recipes/recipe_modules/infra_paths/__init__.py
506
538
  - vendor/depot_tools/recipes/recipe_modules/infra_paths/api.py
507
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/basic.json
508
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_linux.json
509
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_mac.json
510
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_buildbot_win.json
511
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_linux.json
512
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_mac.json
513
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_generic_win.json
514
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_linux.json
515
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_mac.json
516
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.expected/paths_kitchen_win.json
517
- - vendor/depot_tools/recipes/recipe_modules/infra_paths/example.py
539
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/basic.json
540
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_buildbot_linux.json
541
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_buildbot_mac.json
542
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_buildbot_win.json
543
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_generic_linux.json
544
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_generic_mac.json
545
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_generic_win.json
546
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_linux.json
547
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_mac.json
548
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.expected/paths_kitchen_win.json
549
+ - vendor/depot_tools/recipes/recipe_modules/infra_paths/examples/full.py
518
550
  - vendor/depot_tools/recipes/recipe_modules/infra_paths/path_config.py
519
551
  - vendor/depot_tools/recipes/recipe_modules/presubmit/__init__.py
520
552
  - vendor/depot_tools/recipes/recipe_modules/presubmit/api.py
521
- - vendor/depot_tools/recipes/recipe_modules/presubmit/bundle_extra_paths.txt
522
- - vendor/depot_tools/recipes/recipe_modules/presubmit/example.expected/basic.json
523
- - vendor/depot_tools/recipes/recipe_modules/presubmit/example.py
553
+ - vendor/depot_tools/recipes/recipe_modules/presubmit/examples/full.expected/basic.json
554
+ - vendor/depot_tools/recipes/recipe_modules/presubmit/examples/full.py
524
555
  - vendor/depot_tools/recipes/recipe_modules/rietveld/__init__.py
525
556
  - vendor/depot_tools/recipes/recipe_modules/rietveld/api.py
526
- - vendor/depot_tools/recipes/recipe_modules/rietveld/example.expected/basic.json
527
- - vendor/depot_tools/recipes/recipe_modules/rietveld/example.expected/buildbot.json
528
- - vendor/depot_tools/recipes/recipe_modules/rietveld/example.py
557
+ - vendor/depot_tools/recipes/recipe_modules/rietveld/examples/full.expected/basic.json
558
+ - vendor/depot_tools/recipes/recipe_modules/rietveld/examples/full.expected/buildbot.json
559
+ - vendor/depot_tools/recipes/recipe_modules/rietveld/examples/full.expected/no_auth.json
560
+ - vendor/depot_tools/recipes/recipe_modules/rietveld/examples/full.py
529
561
  - vendor/depot_tools/recipes/recipe_modules/tryserver/__init__.py
530
562
  - vendor/depot_tools/recipes/recipe_modules/tryserver/api.py
531
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/basic_tags.json
532
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/set_failure_hash_with_no_steps.json
533
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_gerrit_patch.json
534
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_gerrit_patch_deprecated.json
535
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_git_patch.json
536
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_git_patch_luci.json
537
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_rietveld_patch.json
538
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_rietveld_patch_new.json
539
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_wrong_patch.json
540
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.expected/with_wrong_patch_new.json
541
- - vendor/depot_tools/recipes/recipe_modules/tryserver/example.py
563
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/basic_tags.json
564
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/set_failure_hash_with_no_steps.json
565
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch.json
566
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_git_patch.json
567
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_git_patch_luci.json
568
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_rietveld_patch.json
569
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_rietveld_patch_new.json
570
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch.json
571
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch_new.json
572
+ - vendor/depot_tools/recipes/recipe_modules/tryserver/examples/full.py
542
573
  - vendor/depot_tools/recipes/recipes.py
543
574
  - vendor/depot_tools/repo
544
575
  - vendor/depot_tools/rietveld.py
@@ -550,6 +581,7 @@ files:
550
581
  - vendor/depot_tools/roll_dep_svn.py
551
582
  - vendor/depot_tools/scm.py
552
583
  - vendor/depot_tools/setup_color.py
584
+ - vendor/depot_tools/split_cl.py
553
585
  - vendor/depot_tools/subcommand.py
554
586
  - vendor/depot_tools/subprocess2.py
555
587
  - vendor/depot_tools/support/chromite_wrapper
@@ -916,6 +948,19 @@ files:
916
948
  - vendor/depot_tools/third_party/retry_decorator/LICENSE.google
917
949
  - vendor/depot_tools/third_party/retry_decorator/__init__.py
918
950
  - vendor/depot_tools/third_party/retry_decorator/decorators.py
951
+ - vendor/depot_tools/third_party/schema/.editorconfig
952
+ - vendor/depot_tools/third_party/schema/.gitignore
953
+ - vendor/depot_tools/third_party/schema/.travis.yml
954
+ - vendor/depot_tools/third_party/schema/LICENSE-MIT
955
+ - vendor/depot_tools/third_party/schema/MANIFEST.in
956
+ - vendor/depot_tools/third_party/schema/README.chromium
957
+ - vendor/depot_tools/third_party/schema/README.rst
958
+ - vendor/depot_tools/third_party/schema/__init__.py
959
+ - vendor/depot_tools/third_party/schema/schema.py
960
+ - vendor/depot_tools/third_party/schema/setup.cfg
961
+ - vendor/depot_tools/third_party/schema/setup.py
962
+ - vendor/depot_tools/third_party/schema/test_schema.py
963
+ - vendor/depot_tools/third_party/schema/tox.ini
919
964
  - vendor/depot_tools/third_party/simplejson/LICENSE.txt
920
965
  - vendor/depot_tools/third_party/simplejson/PKG-INFO
921
966
  - vendor/depot_tools/third_party/simplejson/__init__.py
@@ -930,7 +975,10 @@ files:
930
975
  - vendor/depot_tools/third_party/upload.py
931
976
  - vendor/depot_tools/update_depot_tools
932
977
  - vendor/depot_tools/update_depot_tools.bat
978
+ - vendor/depot_tools/update_depot_tools_toggle.py
933
979
  - vendor/depot_tools/upload_to_google_storage.py
980
+ - vendor/depot_tools/vpython
981
+ - vendor/depot_tools/vpython.bat
934
982
  - vendor/depot_tools/watchlists.py
935
983
  - vendor/depot_tools/weekly
936
984
  - vendor/depot_tools/win_toolchain/7z/7z.dll
@@ -959,9 +1007,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
959
1007
  version: '0'
960
1008
  required_rubygems_version: !ruby/object:Gem::Requirement
961
1009
  requirements:
962
- - - ">="
1010
+ - - ">"
963
1011
  - !ruby/object:Gem::Version
964
- version: '0'
1012
+ version: 1.3.1
965
1013
  requirements: []
966
1014
  rubyforge_project: libv8
967
1015
  rubygems_version: 2.6.12