1. 22 Mar, 2023 1 commit
  2. 20 Mar, 2023 1 commit
  3. 17 Mar, 2023 2 commits
  4. 08 Mar, 2023 1 commit
  5. 01 Mar, 2023 1 commit
  6. 23 Jan, 2023 1 commit
  7. 19 Dec, 2022 1 commit
    • Jackson Gardner's avatar
      Support `flutter build web --wasm` (#117075) · 9f2c5d8e
      Jackson Gardner authored
      * Work in progress.
      
      * Some fixes to the command line.
      
      * Bootstrapping works.
      
      * Change kickoff order to maximize concurrency.
      
      * Fix analyzer errors and formatting issues.
      
      * Fix doc comment.
      
      * Added unit tests for some of the web targets.
      
      * Format issue.
      
      * Add an integration test that builds an app to wasm.
      
      * Add a todo for depfiles.
      
      * Formatting.
      
      * Apparently the license header needs to say 2014.
      
      * `file://` URIs confuse dart2wasm on Windows. Just use absolute paths.
      
      * Update unit tests to match new path passing.
      
      * Have a distinct build directory for wasm, and fixes for some upstream changes.
      9f2c5d8e
  8. 02 Dec, 2022 1 commit
    • Jackson Gardner's avatar
      Platform binaries reland (#115502) · db1c3e20
      Jackson Gardner authored
      You can now specify a --local-web-sdk flag to point to a wasm_release folder. This will make it so that only artifacts that pertain to the web sdk are overridden to point to the wasm_release folder. Other artifacts (such as impellerc) will pull from the cache, or from the --local-engine path if that is specified.
      
      This also uses precompiled platform kernel files for both ddc and dart2js
      db1c3e20
  9. 22 Nov, 2022 1 commit
  10. 13 Nov, 2022 1 commit
  11. 12 Nov, 2022 1 commit
  12. 01 Nov, 2022 1 commit
  13. 05 Oct, 2022 1 commit
  14. 29 Jul, 2022 1 commit
  15. 12 May, 2022 1 commit
  16. 15 Apr, 2022 1 commit
  17. 06 Jan, 2022 1 commit
  18. 04 Nov, 2021 1 commit
  19. 02 Nov, 2021 1 commit
  20. 21 Oct, 2021 1 commit
  21. 23 Jun, 2021 1 commit
  22. 24 May, 2021 1 commit
  23. 19 May, 2021 1 commit
  24. 08 May, 2021 1 commit
  25. 23 Apr, 2021 2 commits
  26. 13 Apr, 2021 1 commit
  27. 24 Mar, 2021 1 commit
  28. 23 Mar, 2021 1 commit
  29. 19 Feb, 2021 1 commit
  30. 02 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] switch dart defines to base64 to avoid windows control characters (#75027) · 44d5950d
      Jonah Williams authored
      = gets escaped into %3D which seems to be tripping up cmake on windows since % is a control character. Switch to base64 encoding, since this does not have % nor , in the output character set.
      
      This change is not trivially cherry pickable, and isn't tested on windows aside from my local, manual tests due to the planned CI work not being complete yet.
      
      Fixes #75017
      Fixes #74705
      44d5950d
  31. 27 Jan, 2021 1 commit
  32. 03 Dec, 2020 1 commit
  33. 01 Dec, 2020 1 commit
  34. 20 Nov, 2020 1 commit
  35. 19 Nov, 2020 1 commit
  36. 18 Nov, 2020 1 commit
  37. 30 Oct, 2020 1 commit
  38. 26 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] reland: drive service (#68887) · 183fe75d
      Jonah Williams authored
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      * flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      * Removes web-initialize-platform as this is no longer used
      * flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      * VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      
      Web changes
      
      * Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      183fe75d