1. 09 Jun, 2023 1 commit
  2. 15 May, 2023 1 commit
    • Andrew Kolos's avatar
      rename AssetManifest.bin (#126077) · d3e0e03e
      Andrew Kolos authored
      Fixes #124883. Will require a g3fix.
      
      Renames `AssetManifest.bin` to `AssetManifest.smcbin` (madeup extension for "Standard Message Codec binary").
      d3e0e03e
  3. 12 Jan, 2023 1 commit
  4. 07 Dec, 2022 1 commit
  5. 05 Dec, 2022 1 commit
  6. 18 Jun, 2022 1 commit
  7. 02 Nov, 2021 1 commit
  8. 31 Mar, 2021 1 commit
  9. 08 Feb, 2021 1 commit
  10. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4
  11. 27 Jan, 2021 1 commit
  12. 13 Nov, 2020 1 commit
  13. 10 Nov, 2020 1 commit
  14. 16 Sep, 2020 1 commit
  15. 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
  16. 07 Jan, 2020 1 commit
  17. 06 Jan, 2020 1 commit
  18. 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
  19. 23 Oct, 2019 1 commit
  20. 22 Oct, 2019 2 commits
  21. 11 Oct, 2019 1 commit
  22. 13 Jul, 2019 1 commit
  23. 31 May, 2019 1 commit
  24. 30 May, 2019 1 commit
  25. 21 Feb, 2019 1 commit
  26. 05 Oct, 2018 1 commit
  27. 01 Oct, 2018 1 commit
  28. 12 Sep, 2018 1 commit
  29. 04 Sep, 2018 1 commit
    • Danny Tuppeny's avatar
      Change asset_bundle_package_font_test to memory file system (#21114) · a74f591d
      Danny Tuppeny authored
      * Change assert_bundle_package_font_test to memory file system
      
      This is to work towards being able to run the tests without `-j1` (#21113). These tests were using the real filesystem and setting/relying on fs.currentDirectory. There was a comment about this being because the memory provider didnt' support POSIX and Windows, however that seems to have changed since (and many other asset tests already do something similar to this).
      
      * Trim trailing whitespace
      
      * Add a workaround for Windows path slash directions
      
      Strictly this is correct, but the real FS can tolerate either path. The in-memory file system is more strict (see https://github.com/google/file.dart/issues/112).
      
      * Extract a helper for writing schema files in tests
      
      * Missed file when saving!
      
      * Remove redundant comment
      
      * Rename writeBasicSchema -> writeEmptySchema
      
      * Use the file we already have to write contents
      
      * Make comments more descriptive
      
      * Remove another dupe of writeSchema to use the shared one
      
      * Rename schema -> pubspec_schema
      
      * Trim whitespace
      a74f591d
  30. 17 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Clean up usage of temporary directories (#20682) · 3dec6a69
      Ian Hickson authored
      All temporary directory start with `flutter_` and have their random component separated from the name by a period, as in `flutter_test_bundle.YFYQMY`.
      
      I've tried to find some of the places where we didn't cleanly delete temporary directories, too. This greatly reduces, though it does not entirely eliminate, the directories we leave behind when running tests, especially `flutter_tools` tests.
      
      While I was at it I standardized on `tempDir` as the variable name for temporary directories, since it was the most common, removing occurrences of `temp` and `tmp`, among others.
      
      Also I factored out some common code that used to catch exceptions that happen on Windows, and made more places use that pattern.
      3dec6a69
  31. 15 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Shim package:test to avoid matcher issues (#20602) · 686d8f8a
      Ian Hickson authored
      * Upgrade everything except matcher.
      * Roll matcher (and test)
      * Adjust tests that depend on flutter:test directly to depend on a shim
      * Require use of package:test shim and remove other references to package:test
      686d8f8a
  32. 17 Apr, 2018 1 commit
  33. 14 Mar, 2018 1 commit
  34. 12 Mar, 2018 1 commit
  35. 01 Feb, 2018 1 commit
  36. 29 Jan, 2018 1 commit
    • Todd Volkert's avatar
      Extensibility improvements to flutter_tools (#14299) · 1859e82a
      Todd Volkert authored
      * Make the current command injected into the AppContext, allowing
        other classes to inject the current command.
      * Introduce `AssetBundleFactory`, an injected factory class for
        spawning instances of `AssetBundle`. This allows other run contexts
        to use custom asset bundling logic.
      * Clean up RunCommand by removing a 'packages' argument that duplicated
        a global argument by the same name (and for the same purpose).
        Duplicate arguments are confusing and error-prone.
      1859e82a
  37. 24 Jan, 2018 1 commit
  38. 22 Oct, 2017 1 commit
  39. 26 Sep, 2017 1 commit