- 24 Jan, 2017 9 commits
-
-
Robert Iannucci authored
BUG= Change-Id: I1dc7f20eea3f4b1be9179aa6d77bdee08ab8a04f Reviewed-on: https://chromium-review.googlesource.com/431576Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
-
Andrii Shyshkalov authored
This way we avoid extra RPC to codereview site. R=sergiyb@chromium.org BUG=681704 Change-Id: I81f9ac1b8fe4cfaa95458a5669735168185c47e5 Reviewed-on: https://chromium-review.googlesource.com/430639 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org>
-
Andrii Shyshkalov authored
R=sergiyb@chromium.org BUG=681704 Change-Id: I5c320f7e6442a92ae0574e2ca6481a082e82568a Reviewed-on: https://chromium-review.googlesource.com/430795 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org>
-
Andrii Shyshkalov authored
Previously, 1 CL was queried first, followed by all remaining ones in parallel. The purpose was to ensure that valid authentication token is present. However, it still required one call to Rietveld or Gerrit, needlessly increasing latency. This CL first loops over all CLs and ensures that credentials are present, refreshing refresh tokens for Rietveld if necessary. Then, all CLs are queried in parallel. R=sergiyb@chromium.org,clemensh@chromium.org BUG=681704 Change-Id: Ic125ac7c2a684d6f3c34e4e8b899192abbed01bb Reviewed-on: https://chromium-review.googlesource.com/431033Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
-
Dirk Pranke authored
This reverts commit 66c50ea1. Reason for revert: Breaks some OWNERS checks. See https://crbug.com/684270 for details. Original change's description: > Fix OWNERS canned check to avoid duplicate output. > > 1. Update PanProjectChecks() to supply source_filter to CheckOwners(). > This prevents files under e.g. third_party/WebKit being checked both > by the top-level and sub-directory PRESUBMIT rules. > 2. Fix CheckOwners() to list missing-OWNERS only for the sub-directory > it is invoked on, rather than the whole CL. This prevents files under > sub-directories with their own PRESUBMIT rule, within the same repo, > from causing OWNERS to be checked for files outside that directory. > > BUG= > > Reviewed-on: https://chromium-review.googlesource.com/426003 TBR=wez@chromium.org,dcheng@chromium.org BUG=684270 Change-Id: I094818a6fa3e16fbac0d37d2596a40210611ee05 Reviewed-on: https://chromium-review.googlesource.com/431656Reviewed-by: Dirk Pranke <dpranke@chromium.org>
-
Alan Cutter authored
Change-Id: I5dfa6017d1c938f8e1c55fbd6e607909aa4d6811 Reviewed-on: https://chromium-review.googlesource.com/422589Reviewed-by: Robbie Iannucci <iannucci@chromium.org> Commit-Queue: Alan Cutter <alancutter@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/61760cd8bc43a539ddbf9bf69abe5049d3682f71 Remove ret code requirement (martiniss@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2655573002
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/d87e1df614c1b51a4bd09d9fd947fecc0c096f8b path module: make sure tmp / cache dirs exist (nodir@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2649893003
-
Aaron Gable authored
We have to clean up the title, but if the user hasn't expressed any input about the title (i.e. it's one we autogenerated), then don't bother them by pointing it out. BUG=684079 Change-Id: I8215e0a30f786466697fe1df178ca90e1980d9b0 Reviewed-on: https://chromium-review.googlesource.com/431162 Commit-Queue: Aaron Gable <agable@chromium.org> Reviewed-by: Andrew Bonventre <andybons@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
-
- 23 Jan, 2017 1 commit
-
-
Andrii Shyshkalov authored
BUG=681704 Change-Id: I1a774350aea901d4e9f2468cff111cbbcd7f3388 Reviewed-on: https://chromium-review.googlesource.com/430794 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org>
-
- 21 Jan, 2017 3 commits
-
-
Andrii Shyshkalov authored
Git cl decides if git-numberer is enabled on a repository by writing Gerrit's project.config from refs/meta/config into a tempfile, which is then queried using `git config -f tempfile --get ...`. The file itself is only flushed, but not closed after writing because Python's tempfile.NamedTemporaryFile is deleted on closing. This worked fine on Linix/Mac, but not on Windows, where `git config` apparently doesn't see file or its contents. This CL rewrites the above using yet another contexmanager temp directory into which a file is written and closed before git config is ran. R=machenbach@chromium.org,grt@chromium.org BUG=683202 Change-Id: I7974d66b1b2b0478ab4b6f7ac04e547a4981c46c Reviewed-on: https://chromium-review.googlesource.com/430719 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Vadim Shtayura <vadimsh@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/836fb28be142e5385a8715e4c61e23e8ee505ccd Whitelist CIPD_CACHE_DIR env var. (vadimsh@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2645173002
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/6c47cddd76e3159a41c353fd1c1b9bb53a8f065c Add multiprocessing.cpu_count access to platform module. (iannucci@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2647143002
-
- 20 Jan, 2017 2 commits
-
-
Aaron Gable authored
BUG= Change-Id: Ib8953a7fea4e3cd1c17ea277b5310a31821bfbe8 Reviewed-on: https://chromium-review.googlesource.com/431050Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/1bd274dae8c58ecc146fc9111aab9f95ec81e0bd Make --deps-path=- put the temp dir in the real temp folder. (iannucci@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2646073002
-
- 19 Jan, 2017 4 commits
-
-
Christopher Lam authored
This CL adds .js to the list of file extensions that get clang-formatted. BUG=567770 Change-Id: Ieed162a84ca68877e5107da1824b1f49c71d51ed Reviewed-on: https://chromium-review.googlesource.com/429551Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: Dan Beam <dbeam@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/33e10996a4a093ff5a68eb2adb17ec052715fcfd Make failed checks immediately fail the test. (iannucci@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2644783002
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/b3b24239ad0b30c765cf728ef94b5b6a6e852b69 Add support for re._pattern_type to deepcopy during simulation_tests. (iannucci@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2641103002
-
dimu authored
BUG= R=mmoss,agable Change-Id: I6410c28280ed05cf384a3da93e6b154c6081e039 Reviewed-on: https://chromium-review.googlesource.com/427375Reviewed-by: Michael Moss <mmoss@chromium.org>
-
- 17 Jan, 2017 1 commit
-
-
Sam Clegg authored
Its useful to be able to run clang-format on projects outside of chromium. This change informs developers how they can do that. Change-Id: I01ef755aa6e5b53a0a5bb6377e92b2ffdfd17eff Reviewed-on: https://chromium-review.googlesource.com/414204Reviewed-by: Aaron Gable <agable@chromium.org> Commit-Queue: Sam Clegg <sbc@chromium.org>
-
- 16 Jan, 2017 1 commit
-
-
Clemens Hammacher authored
On larger CLs, this can be used to see whether all needed LGTMs are there on a dry run. R=tandrii@chromium.org Change-Id: I5fe4022feaca73d08ead9aed14ca270192740675 Reviewed-on: https://chromium-review.googlesource.com/426819 Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Reviewed-by: smut <smut@chromium.org>
-
- 15 Jan, 2017 1 commit
-
-
jdoerrie authored
This change adds the functionality to display Short URLs for issues if possible. BUG= Change-Id: I250f3609e853663b576b8ff1c7e27e264b179755 Reviewed-on: https://chromium-review.googlesource.com/426318Reviewed-by: Dirk Pranke <dpranke@chromium.org> Commit-Queue: Dirk Pranke <dpranke@chromium.org>
-
- 12 Jan, 2017 3 commits
-
-
Aaron Gable authored
It looks like this regressed when we switched from specifying CCs via the refspec arguments to using the API. BUG=680605 Change-Id: Iabd397b639989f050932188b1a1aa488639ffbbe Reviewed-on: https://chromium-review.googlesource.com/427344Reviewed-by: Andrew Bonventre <andybons@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
Robert Iannucci authored
BUG=680274 Change-Id: I47fd8d7a5380aca49c873006c4f66732b21bee37 Reviewed-on: https://chromium-review.googlesource.com/427323Reviewed-by: Vadim Shtayura <vadimsh@chromium.org> Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/86fea566ec648a47fbe81cce049fa8ad8b7f5ce5 Use basestring as a default type for enum (phosek@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2629543003
-
- 11 Jan, 2017 2 commits
-
-
Aaron Gable authored
BUG=674254 Change-Id: Icdc572648dfffeca7e28f327e085f64985221ce9 Reviewed-on: https://chromium-review.googlesource.com/425823 Commit-Queue: Aaron Gable <agable@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/7c73d4ed7ea86551395704ec24c2bfdfc07acc48 Support for enum type (phosek@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2627763003
-
- 07 Jan, 2017 1 commit
-
-
Wez authored
1. Update PanProjectChecks() to supply source_filter to CheckOwners(). This prevents files under e.g. third_party/WebKit being checked both by the top-level and sub-directory PRESUBMIT rules. 2. Fix CheckOwners() to list missing-OWNERS only for the sub-directory it is invoked on, rather than the whole CL. This prevents files under sub-directories with their own PRESUBMIT rule, within the same repo, from causing OWNERS to be checked for files outside that directory. BUG= Change-Id: I9bd5677a69efe9c78b4174a917780d6688991a38 Reviewed-on: https://chromium-review.googlesource.com/426003 Commit-Queue: James Weatherall <wez@chromium.org> Reviewed-by: Dirk Pranke <dpranke@chromium.org>
-
- 06 Jan, 2017 1 commit
-
-
Aaron Gable authored
BUG=643466 Change-Id: I6e27334401d541fc4b7b3196465497cab1a78029 Reviewed-on: https://chromium-review.googlesource.com/424968Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
- 04 Jan, 2017 1 commit
-
-
Daniel Cheng authored
BUG=none Change-Id: I6864a8ac16393410280f8cdd38719b02a81f6ce1 Reviewed-on: https://chromium-review.googlesource.com/424147Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org>
-
- 03 Jan, 2017 2 commits
-
-
Vadim Shtayura authored
This reverts commit 15f122ee. Reason for revert: lots of bots are running Powershell 2. the new step fails on them (non-fatally though, just generating errors in the log, e.g. https://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/357219/steps/ensure%20git%20tooling%20on%20windows/logs/stdio) Original change's description: > Allow cipd.ps1 execution even if it was fetched from depot_tools.zip. > > Windows keeps track of files downloaded from the Internet and powershell by > default refuses to execute them (even with RemoteSigned policy). We need to > explicitly unblock the file first. > > Note: it requires Powershell >= 3.0. > > R=dpranke@chromium.org, iannucci@chromium.org > BUG=663843 > > Change-Id: Id681f4058f906fa4782a360be184d132d837ae78 > Reviewed-on: https://chromium-review.googlesource.com/424327 > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > Commit-Queue: Vadim Shtayura <vadimsh@chromium.org> > TBR=iannucci@chromium.org,vadimsh@chromium.org,dpranke@chromium.org,chromium-reviews@chromium.org BUG=663843 NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Change-Id: Ibdc58e60d3f35a760de45bc1f71c88c1c4d2f2df Reviewed-on: https://chromium-review.googlesource.com/424872 Commit-Queue: Vadim Shtayura <vadimsh@chromium.org> Reviewed-by: Vadim Shtayura <vadimsh@chromium.org>
-
Vadim Shtayura authored
Windows keeps track of files downloaded from the Internet and powershell by default refuses to execute them (even with RemoteSigned policy). We need to explicitly unblock the file first. Note: it requires Powershell >= 3.0. R=dpranke@chromium.org, iannucci@chromium.org BUG=663843 Change-Id: Id681f4058f906fa4782a360be184d132d837ae78 Reviewed-on: https://chromium-review.googlesource.com/424327Reviewed-by: Dirk Pranke <dpranke@chromium.org> Commit-Queue: Vadim Shtayura <vadimsh@chromium.org>
-
- 26 Dec, 2016 1 commit
-
-
Quinten Yearsley authored
This is a follow-up to https://chromium-review.googlesource.com/c/419148/; the purpose is to confirm that the behavior is how we want it to be when there are presubmit errors and warnings. BUG=671683 Change-Id: I5b295c200d3db1a374e4294bdd78a777ae36c832 Reviewed-on: https://chromium-review.googlesource.com/420975 Commit-Queue: Quinten Yearsley <qyearsley@chromium.org> Reviewed-by: Dirk Pranke <dpranke@chromium.org> Reviewed-by: Aaron Gable <agable@chromium.org>
-
- 21 Dec, 2016 4 commits
-
-
Aaron Gable authored
None of these methods are called anymore. BUG=475320 Change-Id: I2f21a326069cf3e65af179f4e61fa15093b73b07 Reviewed-on: https://chromium-review.googlesource.com/423122Reviewed-by: Katie Thomas <katthomas@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
Aaron Gable authored
This code is no longer imported by anything. BUG=475320 Change-Id: Ib03f1185c3d90e271f4ee4bff6ad0184454facb8 Reviewed-on: https://chromium-review.googlesource.com/422463Reviewed-by: Katie Thomas <katthomas@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org>
-
agable authored
R=iannucci@chromium.org BUG=475320 Review-Url: https://codereview.chromium.org/2354313003
-
agable authored
R=maruel@chromium.org BUG=641588 Review-Url: https://codereview.chromium.org/2401483002
-
- 20 Dec, 2016 1 commit
-
-
Asanka Herath authored
Also set the line wrap limit to 72 + indent from 70 columns total. The latter was limiting the CL description to 68 columns total before wrapping kicked in. BUG=none Change-Id: I93c984c7b121d4bb042d0dc81a662352f77df4d1 Reviewed-on: https://chromium-review.googlesource.com/420243Reviewed-by: Dirk Pranke <dpranke@chromium.org> Commit-Queue: Dirk Pranke <dpranke@chromium.org>
-
- 19 Dec, 2016 2 commits
-
-
Aaron Gable authored
BUG=638750 Change-Id: I9ebe4ff861a37433209b66f4050370b49f17cdc7 Reviewed-on: https://chromium-review.googlesource.com/419661 Commit-Queue: Aaron Gable <agable@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@chromium.org>
-
Andrii Shyshkalov authored
R=machenbach@chromium.org BUG=644915 Change-Id: Id0035e8b286c0f5b4c0c41aec7458965b9bd1a39 Reviewed-on: https://chromium-review.googlesource.com/421514Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
-