1. 20 Mar, 2018 1 commit
  2. 12 Mar, 2018 1 commit
  3. 21 Feb, 2018 1 commit
  4. 16 Feb, 2018 1 commit
  5. 15 Feb, 2018 1 commit
    • xster's avatar
      Break up and show more progression during an Xcode build (#14715) · 1e397d3f
      xster authored
      * Created plumbing but has stream problem
      
      * testing with makePipe
      
      * Trying pipe but not really getting anywhere
      
      * works by repeatedly reading line
      
      * Minor cleanup
      
      * works
      
      * Clean up pipe after use.
      
      * Move the last status forward
      
      * Make sure failed script commands bubble up
      1e397d3f
  6. 13 Feb, 2018 2 commits
  7. 12 Jan, 2018 1 commit
    • Chris Bracken's avatar
      Decode syslog-encoded iOS logs (#14075) · 6a42ed3f
      Chris Bracken authored
      Apple encodes syslog entries using a 7-bit encoding where input UTF-8 bytes
      are encoded as follows:
      1. 0x00 to 0x19: non-printing range. Some ignored, some encoded as <...>.
      2. 0x20 to 0x7f: as-is, with the exception of 0x5c (backslash).
      3. 0x5c (backslash): octal representation \134.
      4. 0x80 to 0x9f: \M^x (using control-character notation for range 0x00 to 0x40).
      5. 0xa0: octal representation \240.
      6. 0xa1 to 0xf7: \M-x (where x is the input byte stripped of its high-order bit).
      7. 0xf8 to 0xff: unused in 4-byte UTF-8.
      
      As there doesn't appear to be a system tool to decode these strings, we
      implement here in Dart. If we're unable to decode a string (e.g.
      decoding results in an invalid UTF-8 string), we fall back to emitting
      the log line as-is.
      6a42ed3f
  8. 01 Dec, 2017 1 commit
  9. 27 Nov, 2017 1 commit
  10. 22 Nov, 2017 1 commit
  11. 17 Nov, 2017 1 commit
  12. 11 Nov, 2017 1 commit
  13. 30 Oct, 2017 1 commit
  14. 13 Sep, 2017 1 commit
    • Carlo Bernaschina's avatar
      Add --trace-skia parameter to flutter run (#12070) · ba36008a
      Carlo Bernaschina authored
      * Add --trace-skia parameter to flutter run
      
      Skia tracing is extremely useful for internal debug, but reduces the
      amount of space available in the Dart Timeline buffers.
      Disable skia tracing by default and expose them via the --trace-skia
      flag.
      
      * Roll Engine to 57a1445a45964d386500c39f5e8d06db060abadb
      ba36008a
  15. 07 Sep, 2017 2 commits
    • Chris Bracken's avatar
      Eliminate iOS log blacklist (#11981) · 8c61116c
      Chris Bracken authored
      This was introduced to suppress libMobileGestalt noise originating from
      libsystem_asl.dylib. Commit 39680ebf
      suppresses all application log messages not originating from the
      app/engine iteself on iOS 10 and above. Since the log message in
      question is only emitted on devices running iOS >= 10.3.0, this
      blacklist no longer necessary.
      8c61116c
    • Chris Bracken's avatar
      Suppress non-Flutter log messages in terminal (#11969) · 39680ebf
      Chris Bracken authored
      On iOS 10 and above, suppress engine log messages from system components
      other than Flutter. This eliminates a large amount of keyboard/plugin
      related noise during edit-refresh development.
      39680ebf
  16. 01 Sep, 2017 1 commit
    • Chris Bracken's avatar
      Use idevice_id, ideviceinfo for iOS device listing (#11883) · eba6ceb8
      Chris Bracken authored
      This patch migrates iOS device listing from using Xcode instruments to
      using the libimobiledevice tools idevice_id and ideviceinfo.
      
      ideviceinfo was previously incompatible with iOS 11 physical devices;
      this has now been fixed.
      
      In 37bb5f13 flutter_tools migrated from
      libimobiledevice-based device listing on iOS to using Xcode instruments
      to work around the lack of support for iOS 11. Using instruments entails
      several downsides, including a significantly higher performance hit, and
      leaking hung DTServiceHub processes in certain cases when a simulator is
      running, necessitating workarounds in which we watched for, and cleaned
      up leaked DTServiceHub processes. This patch returns reverts the move to
      instruments now that it's no longer necessary.
      eba6ceb8
  17. 31 Aug, 2017 1 commit
  18. 23 Aug, 2017 2 commits
  19. 22 Aug, 2017 2 commits
  20. 09 Aug, 2017 1 commit
  21. 01 Aug, 2017 1 commit
  22. 28 Jun, 2017 1 commit
  23. 19 Jun, 2017 1 commit
    • Chris Bracken's avatar
      Re-enable use of instruments for iOS device lookup (#10838) · 1d9f0095
      Chris Bracken authored
      This reverts commit b2909a24.
      
      This resubmits the following patches:
      
      1. Use Xcode instruments to list devices (#10801)
      Eliminates the dependency on idevice_id from libimobiledevice. Instead,
      uses Xcode built-in functionality.
      
      2. Make device discovery asynchronous (#10803)
      Migrates DeviceDiscovery.devices and all device-specific lookup to be
      asynchronous.
      1d9f0095
  24. 17 Jun, 2017 2 commits
    • Chris Bracken's avatar
      Revert use of Xcode instruments for device lookup (#10806) · b2909a24
      Chris Bracken authored
      * Revert "Make device discovery asynchronous (#10803)"
      This reverts commit 972be9c8.
      
      * Revert "Use Xcode instruments to list devices (#10801)"
      This reverts commit 37bb5f13.
      
      This is to resolve a failure that looks related to a bad install of Xcode 8.0
      on our build bots and should be reinstated when the infra issue is diagnosed
      and resolved.
      
      Instruments worked well when this was originally landed, and on the
      following commit, but started failing two commits after this originally
      landed. Manual invocation of instruments on the build host currently
      results in:
      
      ```
      dyld: Library not loaded: @rpath/InstrumentsAnalysisCore.framework/Versions/A/InstrumentsAnalysisCore
        Referenced from: /Applications/Xcode8.0.app/Contents/Developer/usr/bin/instruments
        Reason: image not found
      Abort trap: 6
      ```
      
      It appears the /Applications/Xcode8.0.app/Contents/Applications
      directory (which contains Instruments) is missing on the host.
      b2909a24
    • Chris Bracken's avatar
      Make device discovery asynchronous (#10803) · 972be9c8
      Chris Bracken authored
      Migrates DeviceDiscovery.devices and all device-specific lookup to be
      asynchronous.
      972be9c8
  25. 16 Jun, 2017 6 commits
  26. 15 Jun, 2017 2 commits
  27. 07 Jun, 2017 1 commit
  28. 02 Jun, 2017 1 commit
  29. 16 May, 2017 1 commit