Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Issue 350483003: Build Tools Cleanup (Closed)

Created:
6 years, 6 months ago by kaendfinger
Modified:
6 years, 5 months ago
CC:
reviews_dartlang.org, ricow1
Visibility:
Public.

Description

Build Tools Cleanup Cleans up Python Code in Build Tools TEST: build everything and run tests BUG: https://code.google.com/p/dart/issues/detail?id=19592 R=ricow@google.com Committed: https://code.google.com/p/dart/source/detail?r=38573

Patch Set 1 : initial cleanup #

Patch Set 2 : more cleanup #

Total comments: 26

Patch Set 3 : fix a couple of variable names #

Total comments: 5

Patch Set 4 : more fixes as reviewed by ricow #

Unified diffs Side-by-side diffs Delta from patch set Stats (+178 lines, -190 lines) Patch
M tools/android_link.py View 1 3 chunks +2 lines, -3 lines 0 comments Download
M tools/archive_crash.py View 1 2 3 chunks +7 lines, -7 lines 0 comments Download
M tools/build.py View 1 2 3 9 chunks +25 lines, -27 lines 0 comments Download
M tools/compile_java/compile_java.py View 1 2 3 8 chunks +11 lines, -13 lines 0 comments Download
M tools/compiler_scripts/generate_source_list.py View 1 3 chunks +3 lines, -3 lines 0 comments Download
M tools/copy_dart.py View 1 4 chunks +5 lines, -6 lines 0 comments Download
M tools/create_debian_packages.py View 1 4 chunks +9 lines, -11 lines 0 comments Download
M tools/create_editor.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/create_sdk.py View 1 6 chunks +10 lines, -10 lines 0 comments Download
M tools/create_tarball.py View 1 2 4 chunks +8 lines, -7 lines 0 comments Download
M tools/create_windows_installer.py View 2 chunks +1 line, -2 lines 0 comments Download
M tools/get_archive.py View 1 2 4 chunks +10 lines, -11 lines 0 comments Download
M tools/list_files.py View 1 1 chunk +3 lines, -3 lines 0 comments Download
M tools/list_pkg_directories.py View 1 1 chunk +3 lines, -3 lines 0 comments Download
M tools/make_links.py View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tools/make_version.py View 2 chunks +2 lines, -2 lines 0 comments Download
M tools/only_in_release_mode.py View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M tools/publish_pkg.py View 1 2 6 chunks +6 lines, -7 lines 0 comments Download
M tools/revert.py View 1 2 3 7 chunks +11 lines, -11 lines 0 comments Download
M tools/task_kill.py View 1 6 chunks +16 lines, -16 lines 0 comments Download
M tools/test.py View 2 chunks +1 line, -4 lines 0 comments Download
M tools/testing/webdriver_test_setup.py View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tools/utils.py View 1 2 3 18 chunks +37 lines, -36 lines 0 comments Download

Messages

Total messages: 20 (0 generated)
kaendfinger
Cleanup for Build Tools
6 years, 6 months ago (2014-06-21 09:08:47 UTC) #1
ricow1
generally LGTM, and thank you. I seriously dislike prefixing variable names with the_ though https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py ...
6 years, 6 months ago (2014-06-23 06:58:22 UTC) #2
kustermann
DBC https://codereview.chromium.org/350483003/diff/20001/tools/build.py File tools/build.py (right): https://codereview.chromium.org/350483003/diff/20001/tools/build.py#newcode237 tools/build.py:237: return not the_chunk or (len(the_chunk) == 4 and ...
6 years, 6 months ago (2014-06-23 07:56:42 UTC) #3
ricow1
https://codereview.chromium.org/350483003/diff/20001/tools/copy_dart.py File tools/copy_dart.py (right): https://codereview.chromium.org/350483003/diff/20001/tools/copy_dart.py#newcode78 tools/copy_dart.py:78: print "Usage: %s OUTDIR INPUTS" % sys.argv[0] On 2014/06/23 ...
6 years, 6 months ago (2014-06-23 08:03:14 UTC) #4
kustermann
https://codereview.chromium.org/350483003/diff/20001/tools/copy_dart.py File tools/copy_dart.py (right): https://codereview.chromium.org/350483003/diff/20001/tools/copy_dart.py#newcode78 tools/copy_dart.py:78: print "Usage: %s OUTDIR INPUTS" % sys.argv[0] On 2014/06/23 ...
6 years, 6 months ago (2014-06-23 08:36:56 UTC) #5
kaendfinger
On 2014/06/23 06:58:22, ricow1 wrote: > generally LGTM, and thank you. > I seriously dislike ...
6 years, 6 months ago (2014-06-24 05:54:17 UTC) #6
kaendfinger
Explanations for the_ prefixing https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py File tools/android_link.py (right): https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py#newcode3 tools/android_link.py:3: # Copyright (c) 2014 The ...
6 years, 6 months ago (2014-06-24 05:54:33 UTC) #7
ricow1
https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py File tools/android_link.py (right): https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py#newcode3 tools/android_link.py:3: # Copyright (c) 2014 The Dart Authors. All rights ...
6 years, 6 months ago (2014-06-24 07:41:56 UTC) #8
kaendfinger
On 2014/06/24 07:41:56, ricow1 wrote: > https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py > File tools/android_link.py (right): > > https://codereview.chromium.org/350483003/diff/20001/tools/android_link.py#newcode3 > ...
6 years, 6 months ago (2014-06-27 03:14:01 UTC) #9
kaendfinger
6 years, 6 months ago (2014-06-27 03:14:10 UTC) #10
ricow1
https://codereview.chromium.org/350483003/diff/40001/tools/build.py File tools/build.py (right): https://codereview.chromium.org/350483003/diff/40001/tools/build.py#newcode78 tools/build.py:78: global arch I don't think we need this https://codereview.chromium.org/350483003/diff/40001/tools/compile_java/compile_java.py ...
6 years, 6 months ago (2014-06-27 07:35:34 UTC) #11
kaendfinger
6 years, 5 months ago (2014-06-27 21:39:14 UTC) #12
kaendfinger
On 2014/06/27 21:39:14, kaendfinger wrote: Ping
6 years, 5 months ago (2014-06-28 19:59:14 UTC) #13
ricow1
LGTM, I will land this. PS: if you when you update your code reply done ...
6 years, 5 months ago (2014-06-30 07:02:35 UTC) #14
kaendfinger
On 2014/06/30 07:02:35, ricow1 wrote: > LGTM, I will land this. > PS: if you ...
6 years, 5 months ago (2014-07-01 17:06:33 UTC) #15
kaendfinger
On 2014/07/01 17:06:33, kaendfinger wrote: > On 2014/06/30 07:02:35, ricow1 wrote: > > LGTM, I ...
6 years, 5 months ago (2014-07-12 00:25:46 UTC) #16
kaendfinger
On 2014/06/30 07:02:35, ricow1 wrote: > LGTM, I will land this. > PS: if you ...
6 years, 5 months ago (2014-07-21 16:22:32 UTC) #17
kaendfinger
6 years, 5 months ago (2014-07-25 00:23:57 UTC) #18
Bill Hesse
Committed patchset #4 manually as r38573 (presubmit successful).
6 years, 5 months ago (2014-07-25 11:48:18 UTC) #19
Bill Hesse
6 years, 5 months ago (2014-07-25 11:48:46 UTC) #20
Message was sent while issue was closed.
Committed, without changes to copyright years.

Powered by Google App Engine
This is Rietveld 408576698