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

Issue 240723006: Replace Java based analyzer with Dart based analyzer when building SDK (Closed)

Created:
6 years, 8 months ago by danrubel
Modified:
6 years, 7 months ago
CC:
reviews_dartlang.org, ricow1
Visibility:
Public.

Description

Replace Java based analyzer with Dart based analyzer when building SDK * include analyzer dart files and snapshot in SDK * modified bin/dartanalyzer to call dart based analyzer * removed jar files in utils directory BUG=dartbug.com/18289 R=ricow@google.com, scheglov@google.com Committed: https://code.google.com/p/dart/source/detail?r=35604

Patch Set 1 #

Total comments: 12

Patch Set 2 : address comments #

Total comments: 13

Patch Set 3 : address comments #

Patch Set 4 : merge #

Unified diffs Side-by-side diffs Delta from patch set Stats (+65 lines, -356 lines) Patch
M create_sdk.gyp View 2 chunks +2 lines, -2 lines 0 comments Download
M dart.gyp View 2 chunks +3 lines, -3 lines 0 comments Download
D editor/analyzer.gyp View 1 chunk +0 lines, -65 lines 0 comments Download
A + editor/analyzer_java.gyp View 0 chunks +-1 lines, --1 lines 0 comments Download
D editor/tools/compile_analyzer.py View 1 chunk +0 lines, -142 lines 0 comments Download
A + editor/tools/compile_analyzer_java.py View 1 1 chunk +1 line, -1 line 0 comments Download
M sdk/bin/dartanalyzer View 1 2 2 chunks +8 lines, -70 lines 0 comments Download
M sdk/bin/dartanalyzer.bat View 1 2 1 chunk +44 lines, -57 lines 0 comments Download
A + sdk/bin/dartanalyzer_java View 0 chunks +-1 lines, --1 lines 0 comments Download
A + sdk/bin/dartanalyzer_java.bat View 0 chunks +-1 lines, --1 lines 0 comments Download
M tools/create_sdk.py View 1 2 4 chunks +3 lines, -14 lines 0 comments Download
A utils/dartanalyzer/.gitignore View 1 chunk +2 lines, -0 lines 0 comments Download
A + utils/dartanalyzer/dartanalyzer.gyp View 3 chunks +5 lines, -5 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
danrubel
6 years, 8 months ago (2014-04-17 20:21:11 UTC) #1
scheglov
LGTM I will try it on Windows once it landed and built.
6 years, 8 months ago (2014-04-17 20:50:55 UTC) #2
ahe
This doesn't look good to me. https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer File sdk/bin/dartanalyzer (right): https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer#newcode6 sdk/bin/dartanalyzer:6: # Run dartanalyzer.dart ...
6 years, 8 months ago (2014-04-22 09:38:13 UTC) #3
danrubel
Thanks for looking over all this! https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer File sdk/bin/dartanalyzer (right): https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer#newcode6 sdk/bin/dartanalyzer:6: # Run dartanalyzer.dart ...
6 years, 8 months ago (2014-04-22 18:37:53 UTC) #4
ahe
https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer File sdk/bin/dartanalyzer (right): https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer#newcode43 sdk/bin/dartanalyzer:43: BUILD_DIR="$SDK_DIR/../out/$DART_CONFIGURATION" On 2014/04/22 18:37:54, danrubel wrote: > On 2014/04/22 ...
6 years, 8 months ago (2014-04-23 09:15:05 UTC) #5
ricow1
+ I vote for Peters 2 suggestion in his last reply https://codereview.chromium.org/240723006/diff/20001/dart.gyp File dart.gyp (right): ...
6 years, 8 months ago (2014-04-23 17:36:18 UTC) #6
ricow1
+whesse who may know more on bat than me
6 years, 8 months ago (2014-04-23 17:37:39 UTC) #7
Bill Hesse
On 2014/04/23 17:37:39, ricow1 wrote: > +whesse who may know more on bat than me ...
6 years, 8 months ago (2014-04-23 17:43:35 UTC) #8
aam-me
Hoping to add some information regarding follow_links snippet in dartanalyzer.bat :-) https://codereview.chromium.org/240723006/diff/20001/sdk/bin/dartanalyzer.bat File sdk/bin/dartanalyzer.bat (right): ...
6 years, 8 months ago (2014-04-23 19:28:50 UTC) #9
kustermann
Just skipped over the changes, since rico and peter took already a look. The duplication ...
6 years, 8 months ago (2014-04-24 07:50:38 UTC) #10
danrubel
https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer File sdk/bin/dartanalyzer (right): https://codereview.chromium.org/240723006/diff/1/sdk/bin/dartanalyzer#newcode43 sdk/bin/dartanalyzer:43: BUILD_DIR="$SDK_DIR/../out/$DART_CONFIGURATION" On 2014/04/23 09:15:05, ahe wrote: > > Seems ...
6 years, 7 months ago (2014-04-29 16:10:39 UTC) #11
ricow1
https://codereview.chromium.org/240723006/diff/20001/dart.gyp File dart.gyp (right): https://codereview.chromium.org/240723006/diff/20001/dart.gyp#newcode51 dart.gyp:51: 'target_name': 'dartanalyzer', On 2014/04/29 16:10:40, danrubel wrote: > On ...
6 years, 7 months ago (2014-04-30 07:10:20 UTC) #12
danrubel
On 2014/04/30 07:10:20, ricow1 wrote: > https://codereview.chromium.org/240723006/diff/20001/dart.gyp > File dart.gyp (right): > > https://codereview.chromium.org/240723006/diff/20001/dart.gyp#newcode51 > ...
6 years, 7 months ago (2014-04-30 17:33:23 UTC) #13
ricow1
Since this is holding up progress for editor people: LGTM We should make another target ...
6 years, 7 months ago (2014-04-30 17:38:34 UTC) #14
danrubel
6 years, 7 months ago (2014-04-30 23:09:41 UTC) #15
Message was sent while issue was closed.
Committed patchset #4 manually as r35604 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698