1. 27 Jul, 2018 1 commit
  2. 23 Jul, 2018 1 commit
  3. 20 Jul, 2018 2 commits
  4. 16 Jul, 2018 4 commits
  5. 12 Jul, 2018 3 commits
  6. 11 Jul, 2018 2 commits
  7. 27 Jun, 2018 1 commit
  8. 20 Jun, 2018 1 commit
  9. 19 Jun, 2018 1 commit
  10. 15 Jun, 2018 2 commits
  11. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  12. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  13. 05 Jun, 2018 1 commit
  14. 30 May, 2018 2 commits
  15. 21 May, 2018 1 commit
  16. 04 May, 2018 2 commits
  17. 29 Mar, 2018 1 commit
  18. 28 Mar, 2018 2 commits
  19. 12 Mar, 2018 1 commit
  20. 07 Mar, 2018 1 commit
  21. 28 Feb, 2018 1 commit
    • jcollins-g's avatar
      Android license detector in doctor, take two (#14783) · 614df694
      jcollins-g authored
      * Revert "Revert "Add android license verification to doctor and some refactoring" (#14727)"
      
      This reverts commit d2602947.
      
      * Add tests, fix sdkManagerEnv and use it consistently, and rearrange Status object model
      
      * AnsiSpinner needs to leave the cursor where it found it.
      
      * fix tests
      
      * Const constructor warning only shows up on windows...?
      
      * Avoid crash if we can't find the home directory
      
      * Make pathVarSeparator return a string in the mock
      
      * Implement review comments
      
      * Fix out-of-order problem on stop
      614df694
  22. 21 Feb, 2018 1 commit
  23. 17 Feb, 2018 1 commit
  24. 16 Feb, 2018 1 commit
  25. 15 Feb, 2018 2 commits
  26. 10 Feb, 2018 2 commits
    • Chris Bracken's avatar
      flutter_tools: URI-decode data: URI content (#14627) · 2fe364fb
      Chris Bracken authored
      In getFlutterRoot(), scripts loaded via data: URIs are URI encoded.
      getFlutterRoot() scans the contents of the data for the file:// URI path
      of the Flutter SDK, which itself is URI-encoded. The end result is that
      if the SDK path contains a space, the embedded file:// URI will contain
      a %20. When this is encoded in a data: URI, the contents are
      URI-encoded, resulting in %2520, since the % is encoded to %25.
      
      This patch decodes the data: URI before extracting the SDK file:// URI.
      2fe364fb
    • Chris Bracken's avatar
      Allow spaces in SDK path in flutter_tools tests (#14617) · fd6baba1
      Chris Bracken authored
      The Flutter engine now supports package: and file: imports that resolve
      to paths on disk that include spaces and other URI-escaped characters.
      This patch eliminates the restriction that Dart source paths not include
      %20 (or other URI-escaped characters) in their paths in flutter_tool
      tests.
      fd6baba1
  27. 01 Feb, 2018 1 commit