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

Issue 24998003: Compiler for the JSON Traversal Language. (Closed)

Created:
7 years, 2 months ago by engedy
Modified:
7 years, 2 months ago
Visibility:
Public.

Description

Compiler for the JSON Traversal Language. BUG=298036 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=226750

Patch Set 1 #

Total comments: 20

Patch Set 2 : Addressed comments, added some unittests. #

Total comments: 20

Patch Set 3 : Addressed nits. #

Patch Set 4 : Fixed typos, unittests and strange Win compile errors. #

Patch Set 5 : Silenced false MSVS warning. #

Patch Set 6 : Added OWNERS file. #

Patch Set 7 : Separate GYP file. #

Patch Set 8 : Re-baked unit tests into chrome_tests_unit.gypi, hopefully fixing Win compile error. #

Patch Set 9 : Final touches on unit-tests and frontend strings. #

Patch Set 10 : Fixed linker errors on Win. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1189 lines, -0 lines) Patch
M build/all.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -0 lines 0 comments Download
M chrome/tools/DEPS View 1 1 chunk +1 line, -0 lines 0 comments Download
A chrome/tools/profile_reset/OWNERS View 1 2 3 4 5 1 chunk +3 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_compiler.h View 1 2 3 4 5 6 7 1 chunk +73 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_compiler.cc View 1 2 3 4 5 6 7 1 chunk +193 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_compiler.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +38 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_compiler_frontend.cc View 1 2 3 4 5 6 7 8 1 chunk +109 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_compiler_unittest.cc View 1 2 3 1 chunk +162 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_parser.h View 1 2 3 1 chunk +83 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_parser.cc View 1 2 3 4 1 chunk +173 lines, -0 lines 0 comments Download
A chrome/tools/profile_reset/jtl_parser_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +343 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (0 generated)
engedy
Please take a look.
7 years, 2 months ago (2013-09-27 14:04:21 UTC) #1
battre
https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_compiler.cc File chrome/tools/profile_reset/jtl_compiler.cc (right): https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_compiler.cc#newcode157 chrome/tools/profile_reset/jtl_compiler.cc:157: bool end_of_sentence; nit: initialize to false https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_compiler.h File chrome/tools/profile_reset/jtl_compiler.h ...
7 years, 2 months ago (2013-09-27 15:00:01 UTC) #2
engedy
Please take another look. https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_compiler.cc File chrome/tools/profile_reset/jtl_compiler.cc (right): https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_compiler.cc#newcode157 chrome/tools/profile_reset/jtl_compiler.cc:157: bool end_of_sentence; On 2013/09/27 15:00:01, ...
7 years, 2 months ago (2013-10-01 10:48:09 UTC) #3
engedy
https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_parser_unittest.cc File chrome/tools/profile_reset/jtl_parser_unittest.cc (right): https://codereview.chromium.org/24998003/diff/1/chrome/tools/profile_reset/jtl_parser_unittest.cc#newcode114 chrome/tools/profile_reset/jtl_parser_unittest.cc:114: {"\"//not a comment//\"", "\"//notacomment//\""}, On 2013/09/27 15:00:01, battre wrote: ...
7 years, 2 months ago (2013-10-01 10:48:41 UTC) #4
battre
LGTM with nits https://codereview.chromium.org/24998003/diff/8001/chrome/tools/profile_reset/jtl_compiler.cc File chrome/tools/profile_reset/jtl_compiler.cc (right): https://codereview.chromium.org/24998003/diff/8001/chrome/tools/profile_reset/jtl_compiler.cc#newcode29 chrome/tools/profile_reset/jtl_compiler.cc:29: CHECK(hash.size() == jtl::kHashSizeInBytes); nit: CHECK_EQ(jtl::kHashSizeInBytes, hash.size()); ...
7 years, 2 months ago (2013-10-01 12:18:26 UTC) #5
engedy
https://codereview.chromium.org/24998003/diff/8001/chrome/tools/profile_reset/jtl_compiler.cc File chrome/tools/profile_reset/jtl_compiler.cc (right): https://codereview.chromium.org/24998003/diff/8001/chrome/tools/profile_reset/jtl_compiler.cc#newcode29 chrome/tools/profile_reset/jtl_compiler.cc:29: CHECK(hash.size() == jtl::kHashSizeInBytes); On 2013/10/01 12:18:26, battre wrote: > ...
7 years, 2 months ago (2013-10-01 15:09:32 UTC) #6
engedy
@Nico: please review for OWNERS' approval. Furthermore, I am not sure how thing works in ...
7 years, 2 months ago (2013-10-01 22:03:05 UTC) #7
Nico
Folders in tools/ can have OWNERS files. This is code that runs during a build, ...
7 years, 2 months ago (2013-10-01 22:24:43 UTC) #8
engedy
On 2013/10/01 22:24:43, Nico wrote: > Folders in tools/ can have OWNERS files. Great! Added ...
7 years, 2 months ago (2013-10-01 22:36:36 UTC) #9
engedy
> Are you suggesting refactoring to a .gypi file, or a completely separate .gyp > ...
7 years, 2 months ago (2013-10-02 01:03:36 UTC) #10
Nico
On 2013/10/02 01:03:36, engedy wrote: > > Are you suggesting refactoring to a .gypi file, ...
7 years, 2 months ago (2013-10-02 01:07:42 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/engedy@chromium.org/24998003/119001
7 years, 2 months ago (2013-10-02 12:20:15 UTC) #12
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=28426
7 years, 2 months ago (2013-10-02 12:40:15 UTC) #13
engedy
@Carlos: we would like to add "+third_party/re2/" to "chrome/tools/DEPS". Could you please review this for ...
7 years, 2 months ago (2013-10-02 13:08:25 UTC) #14
engedy
@Carlos: we would like to add "+third_party/re2/" to "chrome/tools/DEPS". Could you please review this for ...
7 years, 2 months ago (2013-10-02 13:08:25 UTC) #15
cpu_(ooo_6.6-7.5)
lgtm
7 years, 2 months ago (2013-10-02 19:13:22 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/engedy@chromium.org/24998003/169001
7 years, 2 months ago (2013-10-03 11:34:02 UTC) #17
commit-bot: I haz the power
7 years, 2 months ago (2013-10-03 15:13:07 UTC) #18
Message was sent while issue was closed.
Change committed as 226750

Powered by Google App Engine
This is Rietveld 408576698