1. 29 May, 2018 2 commits
  2. 28 May, 2018 2 commits
    • Danny Tuppeny's avatar
      Send an event at startup with the protocol version and pid (#17873) · 24e2b238
      Danny Tuppeny authored
      * Send an event at startup with the protocol version and pid
      
      The pid will help with some of the issues of terminate the process when launched through a shell script and the version will allow clients to make decisions about supported features.
      
      I've also bumped the protocol version number for two reasons:
      
      1. This change
      2. We didn't increase it when we added the previous emulator commands
      24e2b238
    • Florian Loitsch's avatar
      Sync async2 (#17964) · 3ced55a7
      Florian Loitsch authored
      Enable --sync-async in Flutter.
      Fixes #16801 
      3ced55a7
  3. 25 May, 2018 3 commits
  4. 24 May, 2018 4 commits
  5. 22 May, 2018 2 commits
  6. 21 May, 2018 3 commits
  7. 18 May, 2018 2 commits
  8. 17 May, 2018 1 commit
  9. 15 May, 2018 1 commit
  10. 14 May, 2018 2 commits
  11. 11 May, 2018 2 commits
  12. 10 May, 2018 7 commits
  13. 09 May, 2018 9 commits
    • Chris Bracken's avatar
      Add caching for kernel compiles during AOT builds (#17439) · 5d8d14b7
      Chris Bracken authored
      We've always cached kernel compiles during bundle builds. This adds
      caching for kernel compiles during AOT builds by moving caching into the
      KernelCompiler.compile() method rather than around each invocation of it.
      
      This also filters buildbot paths included by the kernel compile that are
      not present on the local machine at paths /b/build/slave/Linux_Engine/...
      The kernel compiler should probably include an option to not emit these
      paths in the depfile, since these are used both by Gradle and the
      Fingerprinter class.
      5d8d14b7
    • Chris Bracken's avatar
      Allow 32-bit iOS device simulators (#17443) · a7516785
      Chris Bracken authored
      Previously, Flutter did not support iOS devices with armv7 or armv7s
      CPUs. We now support these devices. This eliminates the previous
      hardcoded checks that prevented running on simulators of older devices.
      
      We maintain the existing restriction on running on watchOS or tvOS
      simulators.
      a7516785
    • Chris Bracken's avatar
      Correct profile-mode AOT snapshot flags (#17435) · 1c27a458
      Chris Bracken authored
      Previously, in non-release (i.e. profile) AOT builds, we were setting
      --no-checked and --conditional_directives flags. --no-checked is the
      default, and we don't make use of conditional directives in Flutter.
      1c27a458
    • Chris Bracken's avatar
      Add pathFilter to Fingerprinter (#17412) · e4f55332
      Chris Bracken authored
      Allows users of Fingerprinter to filter the set of paths collected from
      the explicitly-specified paths and those collected from depfiles.
      
      In some cases, depfiles are emitted with files that are not present on
      the local disk (e.g. the frontend compiler currently emits buildbot
      paths for the dart core libraries and dart:ui). These files will not
      materially affect whether we need to re-run a build action for which
      they are inputs, since they're not present in the filesystem and
      therefore cannot change.
      e4f55332
    • Danny Tuppeny's avatar
      Trim all space/dots from end · 768fca8b
      Danny Tuppeny authored
      Depending on whether can read the AVD (or it even has all fields populated) we might get extra "empty" columns, so this trims all blank cells from the end.
      768fca8b
    • Danny Tuppeny's avatar
      Use correct path for Simulator · 6cd22d01
      Danny Tuppeny authored
      6cd22d01
    • Danny Tuppeny's avatar
      9eb3bf5e
    • Danny Tuppeny's avatar
      Fix formatting · e9281c4a
      Danny Tuppeny authored
      e9281c4a
    • Danny Tuppeny's avatar
      72d0e0b4