1. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  2. 22 Mar, 2019 1 commit
  3. 21 Feb, 2019 1 commit
  4. 16 Feb, 2019 1 commit
  5. 16 Oct, 2018 1 commit
  6. 02 Oct, 2018 1 commit
  7. 01 Oct, 2018 1 commit
  8. 14 Sep, 2018 1 commit
  9. 12 Sep, 2018 1 commit
  10. 17 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Performance test cleanup (#20652) · 1993a673
      Ian Hickson authored
      * Fix TODO syntax.
      * Clarify messages for some timeouts, to aid debugging.
      * Increase some other timeouts that were a needlessly short, to reduce sources of flakes.
      * Remove some more timeouts that were mostly redundant, to remove complexity.
      * Minor style cleanup.
      * Remove some dangerous traps (specifically, hide the explicit start/end times in TimedEvent since they shouldn't matter).
      1993a673
  11. 03 Aug, 2018 1 commit
  12. 02 Aug, 2018 1 commit
  13. 27 Jul, 2018 1 commit
  14. 23 Jul, 2018 1 commit
  15. 16 Jul, 2018 2 commits
  16. 02 Jul, 2018 1 commit
  17. 28 Jun, 2018 1 commit
  18. 05 Jun, 2018 1 commit
  19. 12 Mar, 2018 1 commit
  20. 25 Jan, 2018 1 commit
  21. 23 Nov, 2017 1 commit
    • Chris Bracken's avatar
      Reorganise flutter driver implementation sources (#13163) · cf37a472
      Chris Bracken authored
      This patch reorganises flutter_driver's lib/src directory into three
      subdirectories:
      
      * driver: sources transitively imported/exported by flutter_driver.dart,
        which defines the API used by driver tests executed on the host machine.
      
      * extension: sources transitively imported/exported by
        driver_extension.dart, which defines the API used to instrument a
        Flutter app running on the target device for use with a driver test.
      
      * common: sources common to both driver and extension code.
      
      This makes rolling Flutter into repositories that use Bazel (or
      Bazel-like build systems) significantly more robust, due to the simpler
      glob patterns involved.
      cf37a472
  22. 21 Nov, 2017 1 commit
    • Chris Bracken's avatar
      Use duration not threadDuration for frame duration (#13117) · 14b5cb04
      Chris Bracken authored
      1. We want to measure wall-clock duration for the benchmarks, as opposed
         to thread duration (e.g., waiting on a mutex should accrue time) and
         'dur' is the metric to use for that.
      
      2. On Darwin-based systems (macOS and iOS) 'tdur' is the result of a
         mach syscall lookup to thread_info. This call returns unreliable data
         on iOS. Chromium, for example, disables thread time support entirely
         for iOS.
      14b5cb04
  23. 27 Sep, 2017 1 commit
  24. 21 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Add documentation and clean up code. (#11330) · 8f56f6fd
      Ian Hickson authored
      Mainly, this adds documentation to members that were previously
      lacking documentation.
      
      It also adds a big block of documentation about improving performance
      of widgets.
      
      This also removes some references to package:collection and adds
      global setEquals and listEquals methods in foundation that we can use.
      (setEquals in particular should be much faster than the
      package:collection equivalent, though both should be faster as they
      avoid allocating new objects.) All remaining references now qualify
      the import so we know what our remaining dependencies are.
      
      Also lots of code reordering in Flutter driver to make the code
      consistent and apply the style guide more thoroughly.
      8f56f6fd
  25. 09 Jun, 2017 1 commit
  26. 15 Mar, 2017 2 commits
  27. 04 Mar, 2017 1 commit
  28. 14 Feb, 2017 1 commit
    • Adam Barth's avatar
      Switch benchmarks to thread duration (#8113) · be865544
      Adam Barth authored
      For measuring the Dart thread, we care about thread duration (tdur) rather than
      wall duration (dur) because we don't want to count the time when the Dart
      thread is descheduled (e.g., in preference to the raster thread).
      
      Prior to this change, these benchmarks were mostly measuring whether the OS
      decided to finish the Dart thread's time slice or hand over the CPU to the
      raster thread to complete the visual part of the frame. Now we actually measure
      the work done on the Dart thread.
      be865544
  29. 10 Feb, 2017 1 commit
  30. 22 Jan, 2017 1 commit
  31. 10 Dec, 2016 1 commit
  32. 22 Nov, 2016 1 commit
    • Chris Bracken's avatar
      Add testOutputsDirectory (#6987) · c370b7de
      Chris Bracken authored
      Declares a top-level getter that returns the outputs directory to which
      Flutter Driver tests can write any output files. Timeline data defaults
      to this directory.
      c370b7de
  33. 08 Nov, 2016 1 commit
  34. 25 Oct, 2016 1 commit
  35. 03 May, 2016 1 commit
  36. 14 Apr, 2016 1 commit
  37. 05 Apr, 2016 1 commit
  38. 02 Apr, 2016 1 commit