This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Refactor web configuration/ Add dartdevc#7978
Merged
jonahwilliams merged 16 commits intoflutter:masterfrom Mar 7, 2019
Merged
Conversation
10 tasks
added 2 commits
February 28, 2019 21:05
Contributor
Author
|
These still need the correctly built platform dill files for dartdevc and dart2js, as well as the browser files for dartdevc. |
added 7 commits
February 28, 2019 21:11
Contributor
Author
|
cc @Hixie for licensing question: the libraries.dart file is only needed to execute a script that produces the platform dill files and dartdevc sdk (precompiled dart files). Does this have a different licensing requirement? |
Contributor
Author
|
I'm going to leave out the platform dill generation for now then |
b487d43 to
c8a0af9
Compare
yjbanov
approved these changes
Mar 7, 2019
| "web_gl": { | ||
| "uri": "lib/web_gl/dart2js/web_gl_dart2js.dart" | ||
| }, | ||
| "indexed_db": { |
Contributor
There was a problem hiding this comment.
Curious what would happen if we removed some of the libraries we know we're not using.
Contributor
Author
|
The build release test passed on cirrus, but the github status did not update |
GaryQian
added a commit
to flutter/flutter
that referenced
this pull request
Mar 8, 2019
…ine (19 commits) (#28688) git log --oneline --no-merges f4951df..a48cd16 a48cd16 Update a11y word forward/back enum names (flutter/engine#8073) b5f59ed Delay the vsync callback till the frame start time specified by embedder. (flutter/engine#8072) 7426305 Mark const extern (flutter/engine#8077) d3f6d7a only partial rule revert (flutter/engine#8078) d71bfe5 Only build a full Dart SDK when building for the host system (flutter/engine#8071) de90dbf Refactor web configuration/ Add dartdevc (flutter/engine#7978) ff46dd3 Roll src/third_party/skia 4c1ea43a79b5..88b8d1124b72 (8 commits) (flutter/engine#8070) 80c6dd2 Roll src/third_party/skia 692122e3ef23..4c1ea43a79b5 (3 commits) (flutter/engine#8069) 68ed654 Roll src/third_party/skia 3c957d575c58..692122e3ef23 (6 commits) (flutter/engine#8067) ca0bac4 Revert "add signal to pointer kinds" (flutter/engine#8066) 3fb627f add signal to pointer kinds (flutter/engine#8065) 5a06afa Roll src/third_party/skia 801a9c16d81e..3c957d575c58 (19 commits) (flutter/engine#8063) a93d99d A11y callback (flutter/engine#8005) 3661d5e Re-land "Buffer lifecycle in WindowData" (flutter/engine#8032) 471a2c8 Send scroll events from the macOS shell (flutter/engine#8056) 2fe9c9b Roll src/third_party/skia 72542816cadb..801a9c16d81e (46 commits) (flutter/engine#8060) 3335764 Skip skp files in license check (flutter/engine#8050) 7f16789 Remove redundant thread checker in FML. (flutter/engine#8053) 840c523 Correct URL for Cirrus CI build status badge (flutter/engine#8054) 57c120a remove extra source files (flutter/engine#8052) 4773375 Used named conditionals for platform specific dependencies and suppress Android and Windows hooks on Mac. (flutter/engine#8051) 70a18b5 Add clang static analysis support to gn wrapper (flutter/engine#8047) b30f989 Improve elevation bounds for physical shape layers (flutter/engine#8044) e37bd27 Fix weak pointer use violations in shell and platform view. (flutter/engine#8046) dd80fc9 Add engine support for scrollwheel events (flutter/engine#7494)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Place all of the flutter web engine stuff its own rule/directory.
Via dart2js:
~/Documents/engine/src/out/host_debug_unopt/dart-sdk/bin/dart2js -o ext.js --libraries-spec=/Users/jonahwilliams/Documents/engine/src/out/host_debug_unopt/flutter_patched_sdk/lib/libraries.json lib/main.dart
Via dartdevc:
~/Documents/engine/src/out/host_debug_unopt/dart-sdk/bin/dartdevc -k lib/main.dart -o ext.js --dart-sdk-summary=/Users/jonahwilliams/Documents/engine/src/out/host_debug_unopt/flutter_patched_sdk/lib/_internal/ddc_sdk.dill
This will break the current dart2js compile test, so I will disable that in the meantime