1. 27 Jan, 2021 2 commits
  2. 20 Jan, 2021 1 commit
  3. 14 Jan, 2021 1 commit
  4. 04 Dec, 2020 1 commit
  5. 01 Dec, 2020 1 commit
  6. 11 Nov, 2020 1 commit
  7. 06 Nov, 2020 1 commit
  8. 05 Nov, 2020 1 commit
  9. 27 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] document flutter root initialization (#67884) · 9e5e763e
      Jonah Williams authored
      Moves the flutter root initialization to a static method on the cache. This is a small step towards making this functionality non-static and instead injected like normal members - however, completely removing all of the static-ness at once was too large of a change.
      
      Instead document and add unit tests and change existing code as little as possible.
      
      #47161
      9e5e763e
  10. 23 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] Reland: simplify pub cache logic (#67589) · cb67513f
      Jonah Williams authored
      There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub.
      
      Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version.
      
      Fixes #66777
      Fixes #65723
      cb67513f
  11. 14 Oct, 2020 1 commit
  12. 13 Oct, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] do not measure progress timeout (#67959) · 9e70180f
      Jonah Williams authored
      Remove "This is taking a long time" progress timeout and TimeoutConfiguration.
      9e70180f
    • Jonah Williams's avatar
      [flutter_tools] verify checksum of downloaded artifacts (#67839) · ac751cc5
      Jonah Williams authored
      All of the network requests from google cloud storage include an x-goog-hash header which contains an MD5 checksum. If present, use to validate that the downloaded binary is valid. This will rule out corrupt files as the cause of getting started crashers in the flutter_tool.
      
      #38980
      
      This does not fully resolve the above issue, because while we can check if the checksum matches what was expected from cloud storage, this A) may not necessarily be present and B) may not match up to what should be uploaded as part of the engine build process.
      
      But when life gives you lemons you hash those lemons using an outdated hashing algorithm.
      ac751cc5
  13. 12 Oct, 2020 1 commit
  14. 07 Oct, 2020 2 commits
  15. 06 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] handle case where file is deleted by other program or running... · c8466d04
      Jonah Williams authored
      [flutter_tools] handle case where file is deleted by other program or running on read only volume (#66708)
      
      * [flutter_tools] handle case where file is deleted by other program
      
      * Add test cases
      
      * Update file_system.dart
      
      * Update file_system_test.dart
      
      * fix import
      
      * make a static on ErrorHandligFS
      
      * add support for no exit on failure
      
      * address comments
      
      * update doc comment to file or directory
      c8466d04
  16. 05 Oct, 2020 1 commit
  17. 30 Sep, 2020 1 commit
  18. 24 Sep, 2020 1 commit
  19. 23 Sep, 2020 1 commit
  20. 17 Sep, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] use flutter tool handler for dwds resources and precache tool... · 3e838da9
      Jonah Williams authored
      [flutter_tools] use flutter tool handler for dwds resources and precache tool pub dependencies (#65814)
      
      If the tool is downloaded from a precompiled snapshot, or if the backing source files in the pub cache are deleted, the dwds debugging functionality will break as the client.js file cannot be located. Instead use the PackageConfig to verify that package location, downloading if it is missing.
      
      Override the dwds middleware to avoid Isolate.resolvePackageUri
      
      Fixes #53644
      Fixes #65475
      3e838da9
  21. 16 Sep, 2020 1 commit
  22. 15 Sep, 2020 2 commits
  23. 31 Aug, 2020 1 commit
  24. 25 Aug, 2020 2 commits
  25. 06 Aug, 2020 1 commit
  26. 16 Jul, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] add feature for iOS, android, and fuchsia (#61481) · 859fce90
      Jonah Williams authored
      Add feature flags for android, ios, and fuchsia (on by default). After updating the g3 rollers, the fuchsia feature will be turned off by default. Creates a simpler base type of feature flags for g3 to extend.
      
      Updates android, ios, fuchsia workflows to use feature flags check.
      Removes concept of stable artifacts and checks on flutter version.
      
      Fixes #58999
      #52859
      #12768
      859fce90
  27. 08 Jul, 2020 1 commit
  28. 16 Jun, 2020 1 commit
    • stuartmorgan's avatar
      Switch Linux to the GTK embedding (#59287) · 61c198e7
      stuartmorgan authored
      Updates the tooling to use the GTK embedding, rather than the GLFW embedding:
      - Adds new requirements to `doctor`
      - Updates the app and plugin templates to make GTK-based runners and plugins
      - Stops downloading and installing the GLFW artifacts
      
      Final part of #54860, other than cleanup.
      61c198e7
  29. 09 Jun, 2020 1 commit
  30. 01 Jun, 2020 1 commit
  31. 18 May, 2020 1 commit
    • stuartmorgan's avatar
      Add Linux GTK artifacts to unpack list (#57452) · 25e9d049
      stuartmorgan authored
      To simplify development of the in-progress GTK embedding, which will
      replace the GLFW embedding on Linux, add the GTK artifacts to the unpack
      list. This means that until the transition, both the GLFW and GTK
      artifacts will be unpacked.
      
      Part of #54860
      25e9d049
  32. 08 May, 2020 1 commit
  33. 06 May, 2020 1 commit
  34. 25 Apr, 2020 1 commit
  35. 01 Apr, 2020 1 commit
    • stuartmorgan's avatar
      Precache platform filter change (#53701) · 445b5a14
      stuartmorgan authored
      Makes the following changes to the behavior of precache:
      - The --all-platforms flags now fetches all artifacts, rather than just
        turning off platform filtering of selected artifacts.
      - Explicitly requested artifacts are no longer subject to platform
        filtering. E.g., 'precache --ios' will download iOS artifacts on
        Windows and Linux (but 'precache' without an 'ios' flag will still
        only download iOS artifacts on macOS).
      - Desktop platform artifacts now respect the bypassing of platform
        filtering.
      
      Fixes #53272
      445b5a14