1. 08 Apr, 2020 10 commits
  2. 07 Apr, 2020 21 commits
  3. 06 Apr, 2020 9 commits
    • engine-flutter-autoroll's avatar
      Roll engine df257e59c241..ab434c5540f5 (5 commits) (#54148) · ccb4f737
      engine-flutter-autoroll authored
      * 094563566 Roll src/third_party/skia cc8a76f3c763..04513752fd6e (22 commits) (flutter/engine#17529)
      
      * faf44fed5 Improve C++ plugin lifetime handling (flutter/engine#17489)
      
      * 4b69cf2c4 [tools][fuchsia] Do not tar debug symbol CIPD uploads (flutter/engine#17506)
      
      * 19a7fbf02 Fixed nullability in plugin header and overridden type mismatch error. (flutter/engine#17532)
      
      * ab434c554 Revert "[tools][fuchsia] Do not tar debug symbol CIPD uploads (#17506)" (flutter/engine#17537)
      ccb4f737
    • Todd Volkert's avatar
      Don't checkout master in roll_dev (#54150) · de1e5729
      Todd Volkert authored
      de1e5729
    • Mouad Debbar's avatar
      e3e18921
    • Yegor's avatar
      disable the "gpu" tracing category (#54122) · de27d713
      Yegor authored
      de27d713
    • Jonah Williams's avatar
    • George Wright's avatar
      Manual roll of engine 9b8dcc7ecffe..df257e59c241 (#54111) · 727552e5
      George Wright authored
      * fd2f0d290 Roll fuchsia/sdk/core/linux-amd64 from Ezm2f... to 3yOjK... (flutter/engine#17525)
      
      * 03bbd7c81 Roll src/third_party/dart 05103dfe5a0e..a8251f820b09 (4 commits) (flutter/engine#17526)
      
      * dabda2c66 Roll fuchsia/sdk/core/mac-amd64 from LDdBU... to wZ5qZ... (flutter/engine#17527)
      
      * df257e59c Roll src/third_party/dart a8251f820b09..1210d27678a0 (5 commits) (flutter/engine#17528)
      
      * Updated bin/internal/fuchsia-linux.version
      
      * Updated bin/internal/fuchsia-mac.version
      
      * Increase memory limit for analyze-linux
      727552e5
    • Alexandre Ardhuin's avatar
    • Amir Hardon's avatar
    • stuartmorgan's avatar
      Restructure the Windows app template (#53600) · 2d623278
      stuartmorgan authored
      This moves the app template more toward being a more generic starting
      point for any Flutter application, eliminating some hard-code
      assumptions about there being a single window/engine pair that is
      directly bound to the life of the application:
      - Moves the runloop into its own class, making it capable of servicing
        any number of engine instances.
      - Moves the logic for setting up a window containing only a Flutter view
        into a window subclass for ease of re-use.
      - Makes quit-on-window-close an optional property. (Long term this
        should be even more generic, like a quit-when-last-window-closes
        option, but this is a short-term improvement that removes the binding
        between the runloop and the window).
      - Allows for multiple instances of Win32Window to exist without issues
        relating to the window class registration.
      
      Since there are getting to be a non-trivial number of files associated
      with the runner, this moves the source into a runner/ directory, as is
      already done on some other platforms.
      
      Note that creating multiple Flutter windows at the same time still
      doesn't work correctly even with this change, but this addresses some of
      the known issues, and makes it easier to test in the future (e.g., for
      debugging engine-level issues with multiple instances).
      
      Fixes #45397
      2d623278