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
@@ -1,60 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7
- "--spec",
8
- "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]",
9
- "--patch_root",
10
- "src/third_party/angle",
11
- "--revision_mapping_file",
12
- "{\"src\": \"got_cr_revision\"}",
13
- "--git-cache-dir",
14
- "[GIT_CACHE]",
15
- "--gerrit_repo",
16
- "https://chromium.googlesource.com/angle/angle",
17
- "--gerrit_ref",
18
- "refs/changes/11/338811/3",
19
- "--output_json",
20
- "/path/to/tmp/json",
21
- "--revision",
22
- "src@HEAD",
23
- "--revision",
24
- "src/third_party/angle@HEAD"
25
- ],
26
- "env": {
27
- "GIT_HTTP_LOW_SPEED_LIMIT": "1000",
28
- "GIT_HTTP_LOW_SPEED_TIME": "300",
29
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
30
- },
31
- "infra_step": true,
32
- "name": "bot_update",
33
- "~followup_annotations": [
34
- "@@@STEP_TEXT@Some step text@@@",
35
- "@@@STEP_LOG_LINE@json.output@{@@@",
36
- "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
37
- "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
38
- "@@@STEP_LOG_LINE@json.output@ \"src\": \"HEAD\", @@@",
39
- "@@@STEP_LOG_LINE@json.output@ \"src/third_party/angle\": \"HEAD\"@@@",
40
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
41
- "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
42
- "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"src/third_party/angle\", @@@",
43
- "@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@",
44
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision\": \"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\", @@@",
45
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision_cp\": \"refs/heads/master@{#170242}\"@@@",
46
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
47
- "@@@STEP_LOG_LINE@json.output@ \"root\": \"src\", @@@",
48
- "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
49
- "@@@STEP_LOG_LINE@json.output@}@@@",
50
- "@@@STEP_LOG_END@json.output@@@",
51
- "@@@SET_BUILD_PROPERTY@got_cr_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\"@@@",
52
- "@@@SET_BUILD_PROPERTY@got_cr_revision_cp@\"refs/heads/master@{#170242}\"@@@"
53
- ]
54
- },
55
- {
56
- "name": "$result",
57
- "recipe_result": null,
58
- "status_code": 0
59
- }
60
- ]
@@ -1,60 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7
- "--spec",
8
- "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]",
9
- "--patch_root",
10
- "src/third_party/angle",
11
- "--revision_mapping_file",
12
- "{\"src\": \"got_cr_revision\"}",
13
- "--git-cache-dir",
14
- "[GIT_CACHE]",
15
- "--gerrit_repo",
16
- "https://chromium.googlesource.com/angle/angle",
17
- "--gerrit_ref",
18
- "refs/changes/11/338811/3",
19
- "--output_json",
20
- "/path/to/tmp/json",
21
- "--revision",
22
- "src@HEAD",
23
- "--revision",
24
- "src/third_party/angle@HEAD"
25
- ],
26
- "env": {
27
- "GIT_HTTP_LOW_SPEED_LIMIT": "1000",
28
- "GIT_HTTP_LOW_SPEED_TIME": "300",
29
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
30
- },
31
- "infra_step": true,
32
- "name": "bot_update",
33
- "~followup_annotations": [
34
- "@@@STEP_TEXT@Some step text@@@",
35
- "@@@STEP_LOG_LINE@json.output@{@@@",
36
- "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
37
- "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
38
- "@@@STEP_LOG_LINE@json.output@ \"src\": \"HEAD\", @@@",
39
- "@@@STEP_LOG_LINE@json.output@ \"src/third_party/angle\": \"HEAD\"@@@",
40
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
41
- "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
42
- "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"src/third_party/angle\", @@@",
43
- "@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@",
44
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision\": \"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\", @@@",
45
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision_cp\": \"refs/heads/master@{#170242}\"@@@",
46
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
47
- "@@@STEP_LOG_LINE@json.output@ \"root\": \"src\", @@@",
48
- "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
49
- "@@@STEP_LOG_LINE@json.output@}@@@",
50
- "@@@STEP_LOG_END@json.output@@@",
51
- "@@@SET_BUILD_PROPERTY@got_cr_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\"@@@",
52
- "@@@SET_BUILD_PROPERTY@got_cr_revision_cp@\"refs/heads/master@{#170242}\"@@@"
53
- ]
54
- },
55
- {
56
- "name": "$result",
57
- "recipe_result": null,
58
- "status_code": 0
59
- }
60
- ]
@@ -1,62 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7
- "--spec",
8
- "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]",
9
- "--patch_root",
10
- "src/v8",
11
- "--revision_mapping_file",
12
- "{\"src\": \"got_cr_revision\"}",
13
- "--git-cache-dir",
14
- "[GIT_CACHE]",
15
- "--issue",
16
- "12345",
17
- "--patchset",
18
- "654321",
19
- "--rietveld_server",
20
- "https://rietveld.example.com/",
21
- "--output_json",
22
- "/path/to/tmp/json",
23
- "--revision",
24
- "src@HEAD",
25
- "--revision",
26
- "src/v8@abc"
27
- ],
28
- "env": {
29
- "GIT_HTTP_LOW_SPEED_LIMIT": "1000",
30
- "GIT_HTTP_LOW_SPEED_TIME": "300",
31
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
32
- },
33
- "infra_step": true,
34
- "name": "bot_update",
35
- "~followup_annotations": [
36
- "@@@STEP_TEXT@Some step text@@@",
37
- "@@@STEP_LOG_LINE@json.output@{@@@",
38
- "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
39
- "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
40
- "@@@STEP_LOG_LINE@json.output@ \"src\": \"HEAD\", @@@",
41
- "@@@STEP_LOG_LINE@json.output@ \"src/v8\": \"abc\"@@@",
42
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
43
- "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
44
- "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"src/v8\", @@@",
45
- "@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@",
46
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision\": \"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\", @@@",
47
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision_cp\": \"refs/heads/master@{#170242}\"@@@",
48
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
49
- "@@@STEP_LOG_LINE@json.output@ \"root\": \"src\", @@@",
50
- "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
51
- "@@@STEP_LOG_LINE@json.output@}@@@",
52
- "@@@STEP_LOG_END@json.output@@@",
53
- "@@@SET_BUILD_PROPERTY@got_cr_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\"@@@",
54
- "@@@SET_BUILD_PROPERTY@got_cr_revision_cp@\"refs/heads/master@{#170242}\"@@@"
55
- ]
56
- },
57
- {
58
- "name": "$result",
59
- "recipe_result": null,
60
- "status_code": 0
61
- }
62
- ]
@@ -1,62 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7
- "--spec",
8
- "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]",
9
- "--patch_root",
10
- "src/v8",
11
- "--revision_mapping_file",
12
- "{\"src\": \"got_cr_revision\"}",
13
- "--git-cache-dir",
14
- "[GIT_CACHE]",
15
- "--issue",
16
- "12853011",
17
- "--patchset",
18
- "1",
19
- "--rietveld_server",
20
- "https://codereview.chromium.org",
21
- "--output_json",
22
- "/path/to/tmp/json",
23
- "--revision",
24
- "src@HEAD",
25
- "--revision",
26
- "src/v8@HEAD"
27
- ],
28
- "env": {
29
- "GIT_HTTP_LOW_SPEED_LIMIT": "1000",
30
- "GIT_HTTP_LOW_SPEED_TIME": "300",
31
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
32
- },
33
- "infra_step": true,
34
- "name": "bot_update",
35
- "~followup_annotations": [
36
- "@@@STEP_TEXT@Some step text@@@",
37
- "@@@STEP_LOG_LINE@json.output@{@@@",
38
- "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
39
- "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
40
- "@@@STEP_LOG_LINE@json.output@ \"src\": \"HEAD\", @@@",
41
- "@@@STEP_LOG_LINE@json.output@ \"src/v8\": \"HEAD\"@@@",
42
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
43
- "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
44
- "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"src/v8\", @@@",
45
- "@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@",
46
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision\": \"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\", @@@",
47
- "@@@STEP_LOG_LINE@json.output@ \"got_cr_revision_cp\": \"refs/heads/master@{#170242}\"@@@",
48
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
49
- "@@@STEP_LOG_LINE@json.output@ \"root\": \"src\", @@@",
50
- "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
51
- "@@@STEP_LOG_LINE@json.output@}@@@",
52
- "@@@STEP_LOG_END@json.output@@@",
53
- "@@@SET_BUILD_PROPERTY@got_cr_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\"@@@",
54
- "@@@SET_BUILD_PROPERTY@got_cr_revision_cp@\"refs/heads/master@{#170242}\"@@@"
55
- ]
56
- },
57
- {
58
- "name": "$result",
59
- "recipe_result": null,
60
- "status_code": 0
61
- }
62
- ]
@@ -1,4 +0,0 @@
1
- //gclient*
2
- //subprocess2.py
3
- //third_party/__init__.py
4
- //third_party/repo/
@@ -1,66 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_PACKAGE_REPO[depot_tools]/gerrit_client.py",
7
- "branch",
8
- "--host",
9
- "https://chromium-review.googlesource.com/a",
10
- "--project",
11
- "v8/v8",
12
- "--branch",
13
- "test",
14
- "--commit",
15
- "67ebf73496383c6777035e374d2d664009e2aa5c",
16
- "--json_file",
17
- "/path/to/tmp/json"
18
- ],
19
- "env": {
20
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
21
- },
22
- "infra_step": true,
23
- "name": "gerrit create_gerrit_branch",
24
- "~followup_annotations": [
25
- "@@@STEP_LOG_LINE@json.output@{@@@",
26
- "@@@STEP_LOG_LINE@json.output@ \"can_delete\": true, @@@",
27
- "@@@STEP_LOG_LINE@json.output@ \"ref\": \"refs/heads/test\", @@@",
28
- "@@@STEP_LOG_LINE@json.output@ \"revision\": \"76016386a0d8ecc7b6be212424978bb45959d668\"@@@",
29
- "@@@STEP_LOG_LINE@json.output@}@@@",
30
- "@@@STEP_LOG_END@json.output@@@"
31
- ]
32
- },
33
- {
34
- "cmd": [
35
- "python",
36
- "-u",
37
- "RECIPE_PACKAGE_REPO[depot_tools]/gerrit_client.py",
38
- "branchinfo",
39
- "--host",
40
- "https://chromium-review.googlesource.com/a",
41
- "--project",
42
- "v8/v8",
43
- "--branch",
44
- "master",
45
- "--json_file",
46
- "/path/to/tmp/json"
47
- ],
48
- "env": {
49
- "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
50
- },
51
- "infra_step": true,
52
- "name": "gerrit get_gerrit_branch",
53
- "~followup_annotations": [
54
- "@@@STEP_LOG_LINE@json.output@{@@@",
55
- "@@@STEP_LOG_LINE@json.output@ \"ref\": \"refs/heads/master\", @@@",
56
- "@@@STEP_LOG_LINE@json.output@ \"revision\": \"67ebf73496383c6777035e374d2d664009e2aa5c\"@@@",
57
- "@@@STEP_LOG_LINE@json.output@}@@@",
58
- "@@@STEP_LOG_END@json.output@@@"
59
- ]
60
- },
61
- {
62
- "name": "$result",
63
- "recipe_result": null,
64
- "status_code": 0
65
- }
66
- ]
@@ -1,28 +0,0 @@
1
- //appengine_mapper.py
2
- //auth.py
3
- //checkout.py
4
- //clang_format.py
5
- //cpplint.py
6
- //dart_format.py
7
- //fix_encoding.py
8
- //gclient_utils.py
9
- //gerrit_util.py
10
- //git*
11
- //git_cache.py
12
- //git_common.py
13
- //git_footers.py
14
- //owners.py
15
- //owners_finder.py
16
- //presubmit_support.py
17
- //python_runner.sh
18
- //rietveld.py
19
- //scm.py
20
- //setup_color.py
21
- //subcommand.py
22
- //subprocess2.py
23
- //subprocess2.py
24
- //third_party/__init__.py
25
- //third_party/colorama/
26
- //third_party/httplib2/
27
- //third_party/upload/
28
- //watchlists.py
@@ -1,237 +0,0 @@
1
- [
2
- {
3
- "cmd": [
4
- "python",
5
- "-u",
6
- "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\git_bootstrap.py",
7
- "--verbose"
8
- ],
9
- "cwd": "RECIPE_PACKAGE_REPO[depot_tools]",
10
- "infra_step": true,
11
- "name": "ensure git tooling on windows",
12
- "timeout": 300
13
- },
14
- {
15
- "cmd": [
16
- "python",
17
- "-u",
18
- "RECIPE_MODULE[depot_tools::git]\\resources\\git_setup.py",
19
- "--path",
20
- "[START_DIR]\\src",
21
- "--url",
22
- "https://chromium.googlesource.com/chromium/src.git",
23
- "--git_cmd_path",
24
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat"
25
- ],
26
- "name": "git setup"
27
- },
28
- {
29
- "cmd": [
30
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
31
- "retry",
32
- "fetch",
33
- "origin",
34
- "master",
35
- "--recurse-submodules"
36
- ],
37
- "cwd": "[START_DIR]\\src",
38
- "env": {
39
- "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s"
40
- },
41
- "infra_step": true,
42
- "name": "git fetch"
43
- },
44
- {
45
- "cmd": [
46
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
47
- "checkout",
48
- "-f",
49
- "FETCH_HEAD"
50
- ],
51
- "cwd": "[START_DIR]\\src",
52
- "infra_step": true,
53
- "name": "git checkout"
54
- },
55
- {
56
- "cmd": [
57
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
58
- "rev-parse",
59
- "HEAD"
60
- ],
61
- "cwd": "[START_DIR]\\src",
62
- "infra_step": true,
63
- "name": "read revision",
64
- "stdout": "/path/to/tmp/",
65
- "~followup_annotations": [
66
- "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@"
67
- ]
68
- },
69
- {
70
- "cmd": [
71
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
72
- "clean",
73
- "-f",
74
- "-d",
75
- "-x"
76
- ],
77
- "cwd": "[START_DIR]\\src",
78
- "infra_step": true,
79
- "name": "git clean"
80
- },
81
- {
82
- "cmd": [
83
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
84
- "submodule",
85
- "sync"
86
- ],
87
- "cwd": "[START_DIR]\\src",
88
- "infra_step": true,
89
- "name": "submodule sync"
90
- },
91
- {
92
- "cmd": [
93
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
94
- "submodule",
95
- "update",
96
- "--init",
97
- "--recursive"
98
- ],
99
- "cwd": "[START_DIR]\\src",
100
- "infra_step": true,
101
- "name": "submodule update"
102
- },
103
- {
104
- "cmd": [
105
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
106
- "-c",
107
- "foo=bar",
108
- "count-objects",
109
- "-v"
110
- ],
111
- "cwd": "[START_DIR]\\src",
112
- "infra_step": true,
113
- "name": "count-objects",
114
- "stdout": "/path/to/tmp/"
115
- },
116
- {
117
- "cmd": [
118
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
119
- "config",
120
- "--get",
121
- "remote.origin.url"
122
- ],
123
- "cwd": "[START_DIR]\\src",
124
- "infra_step": true,
125
- "name": "git config remote.origin.url",
126
- "stdout": "/path/to/tmp/",
127
- "~followup_annotations": [
128
- "@@@STEP_TEXT@foo@@@"
129
- ]
130
- },
131
- {
132
- "cmd": [
133
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
134
- "show",
135
- "HEAD",
136
- "--format=%at",
137
- "-s"
138
- ],
139
- "cwd": "[START_DIR]\\src",
140
- "infra_step": true,
141
- "name": "git show",
142
- "stdout": "/path/to/tmp/"
143
- },
144
- {
145
- "cmd": [
146
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
147
- "fetch",
148
- "origin",
149
- "--tags"
150
- ],
151
- "cwd": "[START_DIR]\\src",
152
- "infra_step": true,
153
- "name": "git fetch tags"
154
- },
155
- {
156
- "cmd": [
157
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
158
- "status"
159
- ],
160
- "cwd": "[START_DIR]\\src",
161
- "infra_step": true,
162
- "name": "git status"
163
- },
164
- {
165
- "cmd": [
166
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
167
- "status"
168
- ],
169
- "cwd": "[START_DIR]\\src",
170
- "infra_step": true,
171
- "name": "git status can_fail_build"
172
- },
173
- {
174
- "cmd": [
175
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
176
- "status"
177
- ],
178
- "cwd": "[START_DIR]\\src",
179
- "infra_step": true,
180
- "name": "git status cannot_fail_build"
181
- },
182
- {
183
- "cmd": [
184
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
185
- "new-branch",
186
- "refactor"
187
- ],
188
- "cwd": "[START_DIR]\\src",
189
- "env": {
190
- "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s"
191
- },
192
- "infra_step": true,
193
- "name": "git new-branch refactor"
194
- },
195
- {
196
- "cmd": [
197
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
198
- "new-branch",
199
- "feature",
200
- "--upstream",
201
- "refactor"
202
- ],
203
- "cwd": "[START_DIR]\\src",
204
- "env": {
205
- "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s"
206
- },
207
- "infra_step": true,
208
- "name": "git new-branch feature"
209
- },
210
- {
211
- "cmd": [
212
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
213
- "rebase",
214
- "origin/master"
215
- ],
216
- "cwd": "[START_DIR]\\src",
217
- "infra_step": true,
218
- "name": "my repo rebase"
219
- },
220
- {
221
- "cmd": [
222
- "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
223
- "bundle",
224
- "create",
225
- "[START_DIR]\\all.bundle",
226
- "--all"
227
- ],
228
- "cwd": "[START_DIR]\\src",
229
- "infra_step": true,
230
- "name": "git bundle"
231
- },
232
- {
233
- "name": "$result",
234
- "recipe_result": null,
235
- "status_code": 0
236
- }
237
- ]