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

Issue 1373723003: Fix javac --incremental by using jmake for dependency analysis (Closed)

Created:
5 years, 2 months ago by agrieve
Modified:
5 years, 2 months ago
CC:
chromium-reviews, jbudorick+watch_chromium.org, klundberg+watch_chromium.org, yfriedman+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@aidl
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Fix javac --incremental by using jmake for dependency analysis BUG=536817 Committed: https://crrev.com/fef292dbfd9b6cea6ae67ad1e939f8efc489b039 Cr-Commit-Position: refs/heads/master@{#352065}

Patch Set 1 #

Total comments: 17

Patch Set 2 : review comments #

Total comments: 1

Patch Set 3 : Disable incremental_dx for release #

Patch Set 4 : attempt revert of random changes #

Patch Set 5 : Nevermind, I just don't know how to use codereview. #

Patch Set 6 : fix license check #

Unified diffs Side-by-side diffs Delta from patch set Stats (+7665 lines, -35 lines) Patch
M build/android/gyp/javac.py View 1 2 4 5 chunks +80 lines, -16 lines 0 comments Download
M build/android/gyp/util/md5_check.py View 1 2 chunks +2 lines, -2 lines 0 comments Download
M build/config/android/config.gni View 1 2 1 chunk +8 lines, -2 lines 0 comments Download
M build/config/android/internal_rules.gni View 4 chunks +10 lines, -2 lines 0 comments Download
M build/config/android/rules.gni View 4 chunks +6 lines, -1 line 0 comments Download
M third_party/devscripts/licensecheck.pl View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
A third_party/jmake/BUILD.gn View 1 chunk +31 lines, -0 lines 0 comments Download
A + third_party/jmake/LICENSE View 10 chunks +11 lines, -10 lines 0 comments Download
A + third_party/jmake/OWNERS View 1 chunk +1 line, -1 line 0 comments Download
A third_party/jmake/README.chromium View 1 chunk +16 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/Base64.java View 1 chunk +80 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/BinaryFileReader.java View 1 chunk +96 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/BinaryFileWriter.java View 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/BinaryProjectDatabaseReader.java View 1 chunk +281 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/BinaryProjectDatabaseWriter.java View 1 chunk +363 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/ClassFileReader.java View 1 chunk +595 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/ClassInfo.java View 1 chunk +746 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/ClassPath.java View 1 chunk +448 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/CompatibilityChecker.java View 1 chunk +610 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/Main.java View 1 chunk +899 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/PCDContainer.java View 1 chunk +64 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/PCDEntry.java View 1 chunk +111 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/PCDManager.java View 1 chunk +1603 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/PrivateException.java View 1 chunk +28 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/PublicExceptions.java View 1 chunk +169 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/RefClassFinder.java View 1 chunk +697 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/TextProjectDatabaseReader.java View 1 chunk +107 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/TextProjectDatabaseWriter.java View 1 chunk +144 lines, -0 lines 0 comments Download
A third_party/jmake/src/org/pantsbuild/jmake/Utils.java View 1 chunk +355 lines, -0 lines 0 comments Download
M tools/android/eclipse/.classpath View 1 2 4 1 chunk +1 line, -0 lines 0 comments Download
M tools/checklicenses/checklicenses.py View 1 2 3 4 5 1 chunk +3 lines, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 33 (14 generated)
agrieve
yfriedman@: Please review build/ changes. jochen@ or jam@: Please review changes in third_party
5 years, 2 months ago (2015-09-29 14:35:04 UTC) #2
Daniel Berlin
LGTM for OSTPR
5 years, 2 months ago (2015-09-29 15:41:25 UTC) #4
Yaron
https://codereview.chromium.org/1373723003/diff/1/build/android/gyp/javac.py File build/android/gyp/javac.py (right): https://codereview.chromium.org/1373723003/diff/1/build/android/gyp/javac.py#newcode137 build/android/gyp/javac.py:137: new_args = ['-C' + arg for arg in javac_cmd] ...
5 years, 2 months ago (2015-09-30 02:19:25 UTC) #5
agrieve
https://codereview.chromium.org/1373723003/diff/1/build/android/gyp/javac.py File build/android/gyp/javac.py (right): https://codereview.chromium.org/1373723003/diff/1/build/android/gyp/javac.py#newcode137 build/android/gyp/javac.py:137: new_args = ['-C' + arg for arg in javac_cmd] ...
5 years, 2 months ago (2015-10-01 16:26:12 UTC) #6
Yaron
lgtm https://codereview.chromium.org/1373723003/diff/20001/build/android/gyp/javac.py File build/android/gyp/javac.py (right): https://codereview.chromium.org/1373723003/diff/20001/build/android/gyp/javac.py#newcode142 build/android/gyp/javac.py:142: do_not_prefix = ('-classpath', '-bootclasspath') make list?
5 years, 2 months ago (2015-10-01 17:21:20 UTC) #7
agrieve
On 2015/10/01 17:21:20, Yaron wrote: > lgtm > > https://codereview.chromium.org/1373723003/diff/20001/build/android/gyp/javac.py > File build/android/gyp/javac.py (right): > ...
5 years, 2 months ago (2015-10-01 18:39:37 UTC) #8
jochen (gone - plz use gerrit)
lgtm
5 years, 2 months ago (2015-10-01 18:43:50 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1373723003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1373723003/20001
5 years, 2 months ago (2015-10-01 19:45:04 UTC) #12
commit-bot: I haz the power
Try jobs failed on following builders: win8_chromium_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win8_chromium_ng/builds/48343) win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, ...
5 years, 2 months ago (2015-10-01 19:51:21 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1373723003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1373723003/80001
5 years, 2 months ago (2015-10-01 20:46:16 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: win8_chromium_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win8_chromium_ng/builds/48390) win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, ...
5 years, 2 months ago (2015-10-01 20:52:33 UTC) #19
agrieve
phajdan.jr@chromium.org: Please review changes in license_checker
5 years, 2 months ago (2015-10-02 01:11:34 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1373723003/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1373723003/100001
5 years, 2 months ago (2015-10-02 01:12:30 UTC) #23
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_compile_dbg_ng/builds/90663) win_chromium_rel_ng on ...
5 years, 2 months ago (2015-10-02 01:17:56 UTC) #25
agrieve
On 2015/10/02 01:17:56, commit-bot: I haz the power wrote: > Dry run: Try jobs failed ...
5 years, 2 months ago (2015-10-02 16:04:36 UTC) #27
Lei Zhang
lgtm
5 years, 2 months ago (2015-10-02 17:07:01 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1373723003/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1373723003/100001
5 years, 2 months ago (2015-10-02 17:21:05 UTC) #31
commit-bot: I haz the power
Committed patchset #6 (id:100001)
5 years, 2 months ago (2015-10-02 17:28:06 UTC) #32
commit-bot: I haz the power
5 years, 2 months ago (2015-10-02 17:29:03 UTC) #33
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/fef292dbfd9b6cea6ae67ad1e939f8efc489b039
Cr-Commit-Position: refs/heads/master@{#352065}

Powered by Google App Engine
This is Rietveld 408576698