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

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed)

Created:
5 years, 7 months ago by Cutch
Modified:
5 years, 7 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, darin (slow to review), gregsimon, mojo-reviews_chromium.org, ojan, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://github.com/domokit/mojo.git@master
Target Ref:
refs/heads/master
Project:
mojo
Visibility:
Public.

Description

Rationalize Dart mojo and sky package structure. NOTE: This CL appears far larger than it actually is for two reasons: 1) Many files were moved around to use the Dart package directory structure. 2) Many .dart files had to have import paths updated. - Organize mojo/public/dart so that it uses standard Dart package layout - Organize mojo/dart/apptest so that it uses a standard Dart package layout - Organize sky/sdk so that it uses a standard Dart package layout - Create a mojo/testing package (used by unittests) - Introduce the 'dart_pkg' gn rule which populates gen/Config/dart-pkg - All internally vended Dart packages must have a corresponding dart_pkg rule - It is now possible to use dependency_overrides: in pubspec.yaml to mix internal and external package dependencies (enables analyzer, editor, webstorm usage for internal developers). - Package root for dart content handler ends with "packages/" - Imports of mojo package uris no longer need the "public/dart" - mojo/public/tools/dart_package.py is a clone of mojo/public/tools/gn/zip.py - Sky tests no longer run 'deploy_sdk' script. R=eseidel@chromium.org Committed: https://chromium.googlesource.com/external/mojo/+/1a396394dd951450f0ff5c2da81dced0ca18e8c8

Patch Set 1 #

Patch Set 2 : #

Total comments: 1

Patch Set 3 : #

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+771 lines, -11369 lines) Patch
M examples/dart/console_example/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/console_example/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/dart/device_info/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/device_info/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/dart/hello_world/hello/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/hello_world/hello/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/dart/hello_world/world/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/hello_world/world/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/dart/netcat/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/netcat/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/dart/wget/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M examples/dart/wget/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M examples/terminal/terminal_file_impl.dart View 1 chunk +3 lines, -4 lines 0 comments Download
M mojo/BUILD.gn View 1 1 chunk +2 lines, -0 lines 0 comments Download
M mojo/dart/apptest/BUILD.gn View 1 2 3 1 chunk +10 lines, -2 lines 0 comments Download
D mojo/dart/apptest/apptest/apptest.dart View 1 chunk +0 lines, -69 lines 0 comments Download
A + mojo/dart/apptest/lib/apptest.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/apptest/pubspec.yaml View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/embedder/BUILD.gn View 4 chunks +36 lines, -37 lines 0 comments Download
M mojo/dart/embedder/builtin.dart View 1 1 chunk +1 line, -0 lines 0 comments Download
M mojo/dart/embedder/io/mojo_patch.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/embedder/packages.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/embedder/test/BUILD.gn View 1 3 chunks +2 lines, -63 lines 0 comments Download
M mojo/dart/embedder/test/dart_to_cpp_tests.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M mojo/dart/embedder/test/dart_to_cpp_tests.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/dart/embedder/test/run_dart_tests.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M mojo/dart/embedder/test/validation_unittest.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
A + mojo/dart/mojom/BUILD.gn View 1 2 3 1 chunk +7 lines, -6 lines 0 comments Download
M mojo/dart/test/async_await_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/test/bindings_generation_test.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/test/codec_test.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/test/compile_all_interfaces_test.dart View 1 1 chunk +4 lines, -4 lines 0 comments Download
M mojo/dart/test/control_messages_test.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M mojo/dart/test/core_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/dart/test/exception_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/test/handle_finalizer_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/dart/test/handle_watcher_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/dart/test/import_mojo.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/dart/test/ping_pong_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/test/simple_handle_watcher_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/test/uri_base_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M mojo/dart/test/validation_test.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + mojo/dart/testing/BUILD.gn View 1 1 chunk +5 lines, -6 lines 0 comments Download
D mojo/dart/testing/async_helper.dart View 1 1 chunk +0 lines, -94 lines 0 comments Download
D mojo/dart/testing/expect.dart View 1 1 chunk +0 lines, -380 lines 0 comments Download
A + mojo/dart/testing/lib/async_helper.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/dart/testing/lib/expect.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/dart/testing/lib/validation_test_input_parser.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A mojo/dart/testing/pubspec.yaml View 1 1 chunk +1 line, -0 lines 0 comments Download
D mojo/dart/testing/validation_test_input_parser.dart View 1 1 chunk +0 lines, -437 lines 0 comments Download
M mojo/public/dart/BUILD.gn View 1 2 3 1 chunk +36 lines, -24 lines 0 comments Download
M mojo/public/dart/README.md View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
D mojo/public/dart/application.dart View 1 chunk +0 lines, -18 lines 0 comments Download
D mojo/public/dart/bindings.dart View 1 chunk +0 lines, -19 lines 0 comments Download
D mojo/public/dart/core.dart View 1 chunk +0 lines, -19 lines 0 comments Download
D mojo/public/dart/internal.dart View 1 chunk +0 lines, -14 lines 0 comments Download
D mojo/public/dart/io.dart View 1 chunk +0 lines, -49 lines 0 comments Download
A + mojo/public/dart/lib/application.dart View 1 chunk +2 lines, -2 lines 0 comments Download
A + mojo/public/dart/lib/bindings.dart View 1 chunk +1 line, -1 line 0 comments Download
A + mojo/public/dart/lib/core.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/internal.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A mojo/public/dart/lib/io.dart View 1 chunk +49 lines, -0 lines 0 comments Download
A + mojo/public/dart/lib/src/application.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/application_connection.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/buffer.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/codec.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/control_message.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/data_pipe.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/drain_data.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/event_stream.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/handle.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/handle_watcher.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/message.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/message_pipe.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/natives.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/proxy.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/struct.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/stub.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/timer_queue.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A + mojo/public/dart/lib/src/types.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
A mojo/public/dart/pubspec.yaml View 1 chunk +4 lines, -0 lines 0 comments Download
M mojo/public/dart/rules.gni View 1 2 3 10 chunks +100 lines, -8 lines 0 comments Download
D mojo/public/dart/src/application.dart View 1 chunk +0 lines, -133 lines 0 comments Download
D mojo/public/dart/src/application_connection.dart View 1 chunk +0 lines, -121 lines 0 comments Download
D mojo/public/dart/src/buffer.dart View 1 chunk +0 lines, -85 lines 0 comments Download
D mojo/public/dart/src/codec.dart View 1 chunk +0 lines, -850 lines 0 comments Download
D mojo/public/dart/src/control_message.dart View 1 chunk +0 lines, -61 lines 0 comments Download
D mojo/public/dart/src/data_pipe.dart View 1 chunk +0 lines, -167 lines 0 comments Download
D mojo/public/dart/src/drain_data.dart View 1 chunk +0 lines, -72 lines 0 comments Download
D mojo/public/dart/src/event_stream.dart View 1 chunk +0 lines, -249 lines 0 comments Download
D mojo/public/dart/src/handle.dart View 1 chunk +0 lines, -132 lines 0 comments Download
D mojo/public/dart/src/handle_watcher.dart View 1 chunk +0 lines, -353 lines 0 comments Download
D mojo/public/dart/src/message.dart View 1 chunk +0 lines, -127 lines 0 comments Download
D mojo/public/dart/src/message_pipe.dart View 1 chunk +0 lines, -148 lines 0 comments Download
D mojo/public/dart/src/natives.dart View 1 chunk +0 lines, -70 lines 0 comments Download
D mojo/public/dart/src/proxy.dart View 1 chunk +0 lines, -170 lines 0 comments Download
D mojo/public/dart/src/struct.dart View 1 chunk +0 lines, -26 lines 0 comments Download
D mojo/public/dart/src/stub.dart View 1 chunk +0 lines, -130 lines 0 comments Download
D mojo/public/dart/src/timer_queue.dart View 1 chunk +0 lines, -53 lines 0 comments Download
D mojo/public/dart/src/types.dart View 1 chunk +0 lines, -260 lines 0 comments Download
M mojo/public/tools/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M mojo/public/tools/bindings/generators/dart_templates/module.lib.tmpl View 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/public/tools/bindings/generators/mojom_dart_generator.py View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M mojo/public/tools/dart_analyze.py View 1 chunk +1 line, -1 line 0 comments Download
A + mojo/public/tools/dart_list_mojoms.py View 1 2 chunks +2 lines, -8 lines 0 comments Download
M mojo/public/tools/dart_list_packages_contents.py View 2 chunks +14 lines, -3 lines 0 comments Download
A mojo/public/tools/dart_package.py View 1 chunk +135 lines, -0 lines 0 comments Download
A mojo/public/tools/dart_package_name.py View 1 2 3 1 chunk +38 lines, -0 lines 0 comments Download
A mojo/public/tools/dart_pkg.py View 1 1 chunk +190 lines, -0 lines 0 comments Download
M services/dart/dart_app.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M services/dart/dart_apptests/BUILD.gn View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M services/dart/dart_apptests/echo_apptests.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/dart_apptests/io_http_apptests.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/dart_apptests/io_internet_address_apptests.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/dart_apptests/pingpong_apptests.dart View 1 chunk +3 lines, -3 lines 0 comments Download
A services/dart/dart_apptests/pubspec.yaml View 1 chunk +1 line, -0 lines 0 comments Download
M services/dart/dart_apptests/versioning_apptests.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/test/echo/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M services/dart/test/echo/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/test/pingpong/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M services/dart/test/pingpong/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M services/dart/test/pingpong_target/BUILD.gn View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M services/dart/test/pingpong_target/main.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M sky/BUILD.gn View 1 1 chunk +1 line, -0 lines 0 comments Download
D sky/assets/.gitignore View 1 1 chunk +0 lines, -1 line 0 comments Download
D sky/assets/material-design-icons.sha1 View 1 1 chunk +0 lines, -1 line 0 comments Download
M sky/engine/bindings/BUILD.gn View 2 chunks +5 lines, -5 lines 0 comments Download
D sky/framework/README.md View 1 1 chunk +0 lines, -219 lines 0 comments Download
D sky/framework/animation/animated_value.dart View 1 1 chunk +0 lines, -82 lines 0 comments Download
D sky/framework/animation/curves.dart View 1 1 chunk +0 lines, -72 lines 0 comments Download
D sky/framework/animation/fling_curve.dart View 1 1 chunk +0 lines, -55 lines 0 comments Download
D sky/framework/animation/generators.dart View 1 1 chunk +0 lines, -161 lines 0 comments Download
D sky/framework/animation/mechanics.dart View 1 1 chunk +0 lines, -213 lines 0 comments Download
D sky/framework/animation/scroll_behavior.dart View 1 1 chunk +0 lines, -114 lines 0 comments Download
D sky/framework/components/action_bar.dart View 1 1 chunk +0 lines, -47 lines 0 comments Download
D sky/framework/components/animated_component.dart View 1 1 chunk +0 lines, -40 lines 0 comments Download
D sky/framework/components/button.dart View 1 1 chunk +0 lines, -31 lines 0 comments Download
D sky/framework/components/button_base.dart View 1 1 chunk +0 lines, -38 lines 0 comments Download
D sky/framework/components/checkbox.dart View 1 1 chunk +0 lines, -87 lines 0 comments Download
D sky/framework/components/drawer.dart View 1 2 1 chunk +0 lines, -156 lines 0 comments Download
D sky/framework/components/drawer_header.dart View 1 1 chunk +0 lines, -46 lines 0 comments Download
D sky/framework/components/fixed_height_scrollable.dart View 1 1 chunk +0 lines, -106 lines 0 comments Download
D sky/framework/components/floating_action_button.dart View 1 1 chunk +0 lines, -47 lines 0 comments Download
D sky/framework/components/icon.dart View 1 1 chunk +0 lines, -32 lines 0 comments Download
D sky/framework/components/icon_button.dart View 1 1 chunk +0 lines, -23 lines 0 comments Download
D sky/framework/components/ink_splash.dart View 1 1 chunk +0 lines, -141 lines 0 comments Download
D sky/framework/components/ink_well.dart View 1 1 chunk +0 lines, -119 lines 0 comments Download
D sky/framework/components/input.dart View 1 1 chunk +0 lines, -96 lines 0 comments Download
D sky/framework/components/material.dart View 1 1 chunk +0 lines, -26 lines 0 comments Download
D sky/framework/components/menu_divider.dart View 1 1 chunk +0 lines, -20 lines 0 comments Download
D sky/framework/components/menu_item.dart View 1 2 1 chunk +0 lines, -68 lines 0 comments Download
D sky/framework/components/modal_overlay.dart View 1 1 chunk +0 lines, -27 lines 0 comments Download
D sky/framework/components/popup_menu.dart View 1 1 chunk +0 lines, -115 lines 0 comments Download
D sky/framework/components/popup_menu_item.dart View 1 1 chunk +0 lines, -26 lines 0 comments Download
D sky/framework/components/radio.dart View 1 1 chunk +0 lines, -63 lines 0 comments Download
D sky/framework/components/scaffold.dart View 1 1 chunk +0 lines, -68 lines 0 comments Download
D sky/framework/components/scrollable.dart View 1 1 chunk +0 lines, -146 lines 0 comments Download
D sky/framework/debug/shake-to-reload.sky View 1 1 chunk +0 lines, -41 lines 0 comments Download
D sky/framework/debug/tracing.dart View 1 1 chunk +0 lines, -12 lines 0 comments Download
D sky/framework/editing/editable_string.dart View 1 1 chunk +0 lines, -122 lines 0 comments Download
D sky/framework/editing/editable_text.dart View 1 1 chunk +0 lines, -90 lines 0 comments Download
D sky/framework/editing/keyboard.dart View 1 1 chunk +0 lines, -20 lines 0 comments Download
D sky/framework/elements/animation/controller.dart View 1 1 chunk +0 lines, -48 lines 0 comments Download
D sky/framework/elements/animation/timer.dart View 1 1 chunk +0 lines, -51 lines 0 comments Download
D sky/framework/elements/material-element.sky View 1 1 chunk +0 lines, -62 lines 0 comments Download
D sky/framework/elements/shadow.sky View 1 1 chunk +0 lines, -39 lines 0 comments Download
D sky/framework/elements/sky-box.sky View 1 1 chunk +0 lines, -53 lines 0 comments Download
D sky/framework/elements/sky-button.sky View 1 1 chunk +0 lines, -46 lines 0 comments Download
D sky/framework/elements/sky-checkbox.sky View 1 1 chunk +0 lines, -51 lines 0 comments Download
D sky/framework/elements/sky-drawer.sky View 1 1 chunk +0 lines, -166 lines 0 comments Download
D sky/framework/elements/sky-drawer-header.sky View 1 1 chunk +0 lines, -45 lines 0 comments Download
D sky/framework/elements/sky-element.sky View 1 1 chunk +0 lines, -164 lines 0 comments Download
D sky/framework/elements/sky-icon.sky View 1 1 chunk +0 lines, -57 lines 0 comments Download
D sky/framework/elements/sky-ink-splash.sky View 1 1 chunk +0 lines, -98 lines 0 comments Download
D sky/framework/elements/sky-input.sky View 1 1 chunk +0 lines, -79 lines 0 comments Download
D sky/framework/elements/sky-menu-divider.sky View 1 1 chunk +0 lines, -26 lines 0 comments Download
D sky/framework/elements/sky-menu-item.sky View 1 1 chunk +0 lines, -82 lines 0 comments Download
D sky/framework/elements/sky-radio.sky View 1 1 chunk +0 lines, -112 lines 0 comments Download
D sky/framework/elements/sky-scrollable.sky View 1 1 chunk +0 lines, -162 lines 0 comments Download
D sky/framework/elements/sky-toolbar.sky View 1 1 chunk +0 lines, -33 lines 0 comments Download
M sky/framework/embedder.dart View 1 1 chunk +0 lines, -71 lines 0 comments Download
D sky/framework/fn.dart View 1 2 1 chunk +0 lines, -924 lines 0 comments Download
D sky/framework/layout.dart View 1 2 1 chunk +0 lines, -560 lines 0 comments Download
D sky/framework/layouts/block.dart View 1 1 chunk +0 lines, -30 lines 0 comments Download
M sky/framework/net/fetch.dart View 1 1 chunk +0 lines, -44 lines 0 comments Download
D sky/framework/node.dart View 1 1 chunk +0 lines, -60 lines 0 comments Download
D sky/framework/reflect.dart View 1 1 chunk +0 lines, -41 lines 0 comments Download
M sky/framework/shell.dart View 1 1 chunk +0 lines, -25 lines 0 comments Download
D sky/framework/theme/colors.dart View 1 1 chunk +0 lines, -250 lines 0 comments Download
D sky/framework/theme/shadows.dart View 1 1 chunk +0 lines, -11 lines 0 comments Download
D sky/framework/theme/typography.dart View 1 1 chunk +0 lines, -56 lines 0 comments Download
D sky/framework/theme/view_configuration.dart View 1 1 chunk +0 lines, -29 lines 0 comments Download
A sky/sdk/BUILD.gn View 1 1 chunk +86 lines, -0 lines 0 comments Download
A + sky/sdk/CHANGELOG.md View 1 0 chunks +-1 lines, --1 lines 0 comments Download
D sky/sdk/README.md View 1 1 chunk +0 lines, -223 lines 0 comments Download
A + sky/sdk/bin/init.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/assets/.gitignore View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/assets/material-design-icons.sha1 View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/download_material_design_icons View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/README.md View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/animated_value.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/curves.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/fling_curve.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/generators.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/mechanics.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/animation/scroll_behavior.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/action_bar.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/animated_component.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/button.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/button_base.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/checkbox.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/drawer.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/drawer_header.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/fixed_height_scrollable.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/floating_action_button.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/icon.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/icon_button.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/ink_splash.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/ink_well.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/input.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/material.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/menu_divider.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/menu_item.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/modal_overlay.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/popup_menu.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/popup_menu_item.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/radio.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/scaffold.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/components/scrollable.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/debug/shake-to-reload.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/debug/tracing.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/editing/editable_string.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/editing/editable_text.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/editing/keyboard.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/animation/controller.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/animation/timer.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/material-element.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/shadow.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-box.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-button.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-checkbox.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-drawer.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-drawer-header.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-element.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-icon.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-ink-splash.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-input.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-menu-divider.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-menu-item.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-radio.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-scrollable.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/elements/sky-toolbar.sky View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/embedder.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + sky/sdk/lib/framework/fn.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/layout.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/layouts/block.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/net/fetch.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + sky/sdk/lib/framework/node.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/reflect.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/shell.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + sky/sdk/lib/framework/theme/colors.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/theme/shadows.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/theme/typography.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/framework/theme/view_configuration.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + sky/sdk/lib/sky_tool View 1 0 chunks +-1 lines, --1 lines 0 comments Download
D sky/sdk/packages/mojo/CHANGELOG.md View 1 1 chunk +0 lines, -4 lines 0 comments Download
D sky/sdk/packages/mojo/pubspec.yaml View 1 1 chunk +0 lines, -5 lines 0 comments Download
D sky/sdk/packages/sky/CHANGELOG.md View 1 1 chunk +0 lines, -32 lines 0 comments Download
D sky/sdk/packages/sky/bin/init.dart View 1 1 chunk +0 lines, -17 lines 0 comments Download
D sky/sdk/packages/sky/lib/download_material_design_icons View 1 1 chunk +0 lines, -29 lines 0 comments Download
D sky/sdk/packages/sky/lib/sky_tool View 1 1 chunk +0 lines, -287 lines 0 comments Download
D sky/sdk/packages/sky/pubspec.yaml View 1 1 chunk +0 lines, -8 lines 0 comments Download
A + sky/sdk/pubspec.yaml View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M sky/tests/services/iframe-embed-vmc.sky View 1 chunk +3 lines, -3 lines 0 comments Download
M sky/tests/services/network.sky View 1 1 chunk +4 lines, -3 lines 0 comments Download
M sky/tools/webkitpy/layout_tests/port/base.py View 1 2 3 2 chunks +1 line, -15 lines 0 comments Download
M tools/dart/patch_sdk.diff View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 16 (4 generated)
Cutch
https://codereview.chromium.org/1132063007/diff/20001/mojo/public/tools/dart_package.py File mojo/public/tools/dart_package.py (right): https://codereview.chromium.org/1132063007/diff/20001/mojo/public/tools/dart_package.py#newcode7 mojo/public/tools/dart_package.py:7: """Archives a set of dart packages""" This is a ...
5 years, 7 months ago (2015-05-15 22:21:14 UTC) #2
eseidel
This is really big. I wonder if we can't do this in smaller pieces? Like ...
5 years, 7 months ago (2015-05-15 23:12:44 UTC) #4
Cutch
On 2015/05/15 23:12:44, eseidel wrote: > This is really big. I wonder if we can't ...
5 years, 7 months ago (2015-05-15 23:49:46 UTC) #5
viettrungluu
On 2015/05/15 23:49:46, Cutch wrote: > On 2015/05/15 23:12:44, eseidel wrote: > > This is ...
5 years, 7 months ago (2015-05-15 23:56:12 UTC) #6
abarth-chromium
sky/sdk/lib/framework/components/drawer.dart Could this be sky/sdk/lib/components/drawer.dart instead? The framework part was always a bit redundant. We ...
5 years, 7 months ago (2015-05-15 23:56:58 UTC) #9
Cutch
On 2015/05/15 23:56:12, viettrungluu wrote: > On 2015/05/15 23:49:46, Cutch wrote: > > On 2015/05/15 ...
5 years, 7 months ago (2015-05-16 00:00:24 UTC) #10
Cutch
On 2015/05/15 23:56:58, abarth wrote: > sky/sdk/lib/framework/components/drawer.dart > > Could this be sky/sdk/lib/components/drawer.dart instead? The ...
5 years, 7 months ago (2015-05-16 00:01:46 UTC) #11
viettrungluu
On 2015/05/16 00:00:24, Cutch wrote: > On 2015/05/15 23:56:12, viettrungluu wrote: > > On 2015/05/15 ...
5 years, 7 months ago (2015-05-16 00:03:45 UTC) #12
eseidel
Reviewed in person with John. lgtm
5 years, 7 months ago (2015-05-18 20:41:39 UTC) #13
Cutch
On 2015/05/18 20:41:39, eseidel wrote: > Reviewed in person with John. lgtm Patch Set #4 ...
5 years, 7 months ago (2015-05-18 21:29:36 UTC) #14
eseidel
It took a long time to go through this the first time, I don't plan ...
5 years, 7 months ago (2015-05-18 21:34:22 UTC) #15
Cutch
5 years, 7 months ago (2015-05-18 21:41:50 UTC) #16
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
1a396394dd951450f0ff5c2da81dced0ca18e8c8 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698