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

Issue 23445009: Prune the old deploy code. This CL does a few changes: (Closed)

Created:
7 years, 3 months ago by Siggi Cherem (dart-lang)
Modified:
7 years, 3 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Prune the old deploy code. This CL does a few changes: - includes a few new steps in the deploy transforms that were missing - deletes emitters.dart, paths.dart (which were only needed for generating code), bin/dwc.dart (we never used this) - changes test/run.sh to run from pkg/polymer/. - updates tests expectations to match the new output - for now, disable using shadowdom-polyfill in render tests because they mismatch the results you'd get without the polyfill (css is changed with the polyfill) R=jmesserly@google.com, terry@google.com Committed: https://code.google.com/p/dart/source/detail?r=26828

Patch Set 1 #

Patch Set 2 : #

Total comments: 20

Patch Set 3 : #

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+596 lines, -2270 lines) Patch
M pkg/observe/lib/transform.dart View 1 2 chunks +3 lines, -10 lines 0 comments Download
D pkg/polymer/bin/dwc.dart View 1 chunk +0 lines, -8 lines 0 comments Download
M pkg/polymer/build.dart View 1 chunk +1 line, -2 lines 0 comments Download
M pkg/polymer/example/component/news/test/expected/news_index_test.html.txt View 1 2 3 4 chunks +6 lines, -17 lines 0 comments Download
M pkg/polymer/lib/component_build.dart View 1 2 5 chunks +4 lines, -64 lines 0 comments Download
M pkg/polymer/lib/deploy.dart View 1 7 chunks +30 lines, -14 lines 0 comments Download
M pkg/polymer/lib/dwc.dart View 1 2 2 chunks +18 lines, -156 lines 0 comments Download
M pkg/polymer/lib/polymer.dart View 1 chunk +0 lines, -1 line 0 comments Download
D pkg/polymer/lib/safe_html.dart View 1 chunk +0 lines, -39 lines 0 comments Download
M pkg/polymer/lib/src/compiler.dart View 1 2 21 chunks +17 lines, -276 lines 0 comments Download
M pkg/polymer/lib/src/compiler_options.dart View 1 2 3 chunks +2 lines, -6 lines 0 comments Download
M pkg/polymer/lib/src/css_emitters.dart View 1 chunk +0 lines, -34 lines 0 comments Download
D pkg/polymer/lib/src/emitters.dart View 1 chunk +0 lines, -246 lines 0 comments Download
D pkg/polymer/lib/src/html5_utils.dart View 1 chunk +0 lines, -29 lines 0 comments Download
D pkg/polymer/lib/src/paths.dart View 1 chunk +0 lines, -170 lines 0 comments Download
M pkg/polymer/lib/src/transform.dart View 1 chunk +4 lines, -1 line 0 comments Download
M pkg/polymer/lib/src/transform/code_extractor.dart View 4 chunks +27 lines, -5 lines 0 comments Download
M pkg/polymer/lib/src/transform/import_inliner.dart View 1 2 chunks +90 lines, -11 lines 0 comments Download
A pkg/polymer/lib/src/transform/polyfill_injector.dart View 1 2 1 chunk +76 lines, -0 lines 0 comments Download
M pkg/polymer/lib/src/transform/script_compactor.dart View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M pkg/polymer/lib/testing/content_shell_test.dart View 1 7 chunks +29 lines, -32 lines 0 comments Download
M pkg/polymer/lib/testing/testing.js View 1 1 chunk +11 lines, -0 lines 0 comments Download
M pkg/polymer/test/compiler_test.dart View 4 chunks +0 lines, -21 lines 0 comments Download
M pkg/polymer/test/css_test.dart View 6 chunks +39 lines, -96 lines 0 comments Download
D pkg/polymer/test/paths_test.dart View 1 chunk +0 lines, -339 lines 0 comments Download
M pkg/polymer/test/run.sh View 1 4 chunks +30 lines, -35 lines 0 comments Download
M pkg/polymer/test/run_all.dart View 1 3 chunks +13 lines, -31 lines 0 comments Download
M pkg/polymer/test/transform/all_phases_test.dart View 1 2 3 7 chunks +19 lines, -12 lines 0 comments Download
M pkg/polymer/test/transform/code_extractor_test.dart View 4 chunks +23 lines, -9 lines 0 comments Download
M pkg/polymer/test/transform/common.dart View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
A pkg/polymer/test/transform/polyfill_injector_test.dart View 1 1 chunk +46 lines, -0 lines 0 comments Download
M pkg/polymer/test/transform/script_compactor_test.dart View 1 2 3 2 chunks +2 lines, -4 lines 0 comments Download
M samples/third_party/todomvc/build.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M samples/third_party/todomvc/test/expected/todomvc_listorder_test.html.txt View 1 2 3 9 chunks +25 lines, -210 lines 0 comments Download
M samples/third_party/todomvc/test/expected/todomvc_mainpage2_test.html.txt View 1 2 3 7 chunks +23 lines, -88 lines 0 comments Download
M samples/third_party/todomvc/test/expected/todomvc_mainpage_test.html.txt View 1 2 3 5 chunks +22 lines, -27 lines 0 comments Download
M samples/third_party/todomvc/test/expected/todomvc_markdone_test.html.txt View 1 2 3 10 chunks +26 lines, -271 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
Siggi Cherem (dart-lang)
deleting code is fun! I could keep going, but I thought this was a good ...
7 years, 3 months ago (2013-08-27 23:30:14 UTC) #1
terry
LGTM just a few questions. https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/dwc.dart File pkg/polymer/lib/dwc.dart (right): https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/dwc.dart#newcode33 pkg/polymer/lib/dwc.dart:33: final List<String> inputs; Is ...
7 years, 3 months ago (2013-08-28 21:37:51 UTC) #2
Jennifer Messerly
this is really cool :) few small things otherwise looks good https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/component_build.dart File pkg/polymer/lib/component_build.dart (right): ...
7 years, 3 months ago (2013-08-28 22:25:45 UTC) #3
Siggi Cherem (dart-lang)
Thanks, https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/component_build.dart File pkg/polymer/lib/component_build.dart (right): https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/component_build.dart#newcode89 pkg/polymer/lib/component_build.dart:89: ..addFlag("clean", negatable: false, help: "remove any build artifacts") ...
7 years, 3 months ago (2013-08-28 23:17:05 UTC) #4
Jennifer Messerly
lgtm
7 years, 3 months ago (2013-08-28 23:25:27 UTC) #5
Siggi Cherem (dart-lang)
thx https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/src/transform/import_inliner.dart File pkg/polymer/lib/src/transform/import_inliner.dart (right): https://codereview.chromium.org/23445009/diff/3001/pkg/polymer/lib/src/transform/import_inliner.dart#newcode158 pkg/polymer/lib/src/transform/import_inliner.dart:158: const _urlAttributes = const [ On 2013/08/28 23:17:06, ...
7 years, 3 months ago (2013-08-28 23:36:34 UTC) #6
Siggi Cherem (dart-lang)
7 years, 3 months ago (2013-08-29 00:07:24 UTC) #7
Message was sent while issue was closed.
Committed patchset #4 manually as r26828 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698