1. 25 Sep, 2020 1 commit
  2. 23 Sep, 2020 2 commits
  3. 22 Sep, 2020 1 commit
  4. 19 Sep, 2020 1 commit
  5. 16 Sep, 2020 1 commit
  6. 02 Sep, 2020 1 commit
  7. 31 Aug, 2020 2 commits
  8. 29 Aug, 2020 1 commit
  9. 28 Aug, 2020 2 commits
  10. 27 Aug, 2020 1 commit
    • Ben Konyi's avatar
      Re-enable the Dart Development Service (DDS) (#64671) · d7d12412
      Ben Konyi authored
      This change re-enables DDS and outputs the DDS URI in place of the VM
      service URI on the console. If --disable-dds is not provided,
      --host-vmservice-port will be used to determine the port for DDS rather
      than the host port for the VM service, which will instead be randomly
      chosen.
      d7d12412
  11. 11 Aug, 2020 1 commit
  12. 10 Aug, 2020 1 commit
  13. 29 Jul, 2020 2 commits
  14. 21 Jul, 2020 2 commits
  15. 20 Jul, 2020 4 commits
  16. 17 Jul, 2020 1 commit
  17. 16 Jul, 2020 2 commits
  18. 14 Jul, 2020 2 commits
  19. 13 Jul, 2020 1 commit
  20. 10 Jul, 2020 2 commits
  21. 25 Jun, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] remove most use of global packages path (#60231) · 82a6f9bf
      Jonah Williams authored
      The global packages path could cause tests to fail when it would be overriden to unexpected (in test setup) values. Remove most usage and make it a configuration on buildInfo, along with most other build information. Cleanup the asset builder to require the .packages path and the resident runners to no longer require it, since they already have the information in build_info.
      
      It needs to stick around for the fuchsia deps we do not control.
      
      Filled #60232 for remaining work.
      82a6f9bf
  22. 19 Jun, 2020 1 commit
  23. 18 Jun, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] add missing null-safety flags (#59773) · 01e09ea8
      Jonah Williams authored
      Some of the null-safety commands were missing - plumb them through. Ensure that verbose mode shows their output, and clean up the messaging around sound-null-safety.
      
      Fixes #59769
      
      Adds a test that validate each of the null safety supporting build commands has everything plumbed through.
      01e09ea8
    • Jonah Williams's avatar
      [flutter_tools] remove globals from compilers (#59184) · 447e3d3f
      Jonah Williams authored
      Refactors KernelCompiler and ResidentCompiler to no longer use globals (except as a fallback for g3 migration). Improves the compilation error when running flutter test on a package without a flutter_test dependency.
      
      Updates machine mode to output trace text to stderr
      447e3d3f
  24. 09 Jun, 2020 2 commits
  25. 08 Jun, 2020 2 commits
  26. 04 Jun, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] remove zone level overrides of verbose and daemon logging (#57448) · f5de6aad
      Jonah Williams authored
      Make it possible for all FlutterCommands to be global free, by moving instantiation to inside the Zone context. Additionally, provide VerboseLogger and NotifyLogger (daemon) at the top level and remove from command-specific overrides.
      
      This allows removing a work around where web devices needed to look up directly from the context in non-test code.
      
      Technically the output preferences are still zone injected, but these will be moved soon as they were not being used correctly by the top level command (the injection comes after ArgParser reads the overflow values, causing numerous wrap issues)
      f5de6aad