1. 24 Feb, 2021 2 commits
  2. 17 Feb, 2021 1 commit
  3. 14 Feb, 2021 1 commit
  4. 03 Feb, 2021 1 commit
  5. 27 Jan, 2021 1 commit
  6. 26 Jan, 2021 1 commit
  7. 05 Jan, 2021 1 commit
  8. 04 Dec, 2020 1 commit
  9. 18 Nov, 2020 1 commit
  10. 12 Nov, 2020 1 commit
  11. 11 Nov, 2020 2 commits
  12. 27 Oct, 2020 1 commit
  13. 23 Oct, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] null safety mode is used for dill naming (#68898) · 0f28edac
      Jonah Williams authored
      * [flutter_tools] null safety mode is used for dill naming
      
      * add bad test case
      0f28edac
    • Jonah Williams's avatar
      [flutter_tools] Reland: simplify pub cache logic (#67589) · cb67513f
      Jonah Williams authored
      There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub.
      
      Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version.
      
      Fixes #66777
      Fixes #65723
      cb67513f
  14. 07 Oct, 2020 2 commits
  15. 17 Sep, 2020 1 commit
  16. 16 Sep, 2020 2 commits
  17. 31 Aug, 2020 3 commits
    • Mehmet Fidanboylu's avatar
    • Ben Konyi's avatar
      c8f234d3
    • Shi-Hao Hong's avatar
      [gen_l10n] Synthetic package generation by default (#62395) · fd22fc3e
      Shi-Hao Hong authored
      * synthetic packages by default in gen_l10n tool
      
      * Refactor default path for synthetic package
      
      * Remove unused import
      
      * Code cleanup
      
      * Further improvements to help text
      
      * Refactor synthetic package path
      
      * Remove newlines
      
      * Test cleanup
      
      * clean up logic in inputs and outputs list function
      
      * Update l10n.yaml usage
      
      * only add option if value is non-null
      
      * Update stocks app as proof of concept for synthetic package usage
      
      * Address nits
      
      * print pubspec contents
      
      * add print statements
      
      * Do not allow null value for useSyntheticPackage
      
      * +
      
      * +
      
      * +
      
      * +
      
      * Cleanup
      
      * Add test
      
      * Fix text
      
      * Dont parse pubspec directly
      
      * Test using context
      
      * WIP: generate synthetic packages on pub get -- needs tests
      
      * Allow null value
      
      * Update null handling
      
      * Refactor to properly handle null case
      
      * Fix yamlMap condition
      
      * Fix yaml node for real
      
      * WIP: struggling to write tests
      
      * WIP - take absolute path as an option
      
      * Add tests
      
      * Use environment project directory for synthetic package generation pathway
      
      * Fix typo
      
      * Improve help text
      
      * Update defaults
      
      * Remove unauthorized path import
      
      * Fix pathing issues at synthetic package generation
      
      * Fix typo in test
      
      * Use path.join so projectDir matches up based on OS
      
      * Fix Windows pathing in test
      
      * Remove unnecessary replaceApp code for projectDir.path
      
      * Use globals.fs.currentDirectory.path in resident_runner_test.dart
      
      * Fix merge conflict
      
      * Add test to ensure that synthetic package is generated on pub get
      
      * Fix resident_runner_test.dart tests
      
      * Fix tests
      
      * Use package:file instead of dart:io
      
      * WIP - exploration
      
      * Remove synthetic package use from stocks example
      
      * Update integration test to not use synthetic packages
      
      * Remove trailing whitespace
      
      * flutter pub get runs synth package generation
      
      * Remove more print statements
      
      * Add license header
      
      * WIP - minimally working pub.get
      
      * Use own MockBuildSystem
      
      * Modify test and implementation to be a little cleaner
      
      * Fix flutter pub get invocation
      
      * Use synthetic packages in stocks app
      
      * Revert "Use synthetic packages in stocks app"
      
      This reverts commit 45bf24903c3d4a2a5fd5481d7d6bc36c4a348703.
      
      * Add environment and buildSystem params to flutter test
      
      * Address code review feedback
      
      * +
      
      * Isolate codegen into its own API
      
      * Fix imports
      
      * Slight refactor
      
      * Add one more test for no l10n.yaml file
      
      * Remove unneeded mock class and import in pub_get_test.dart
      
      * More code review feedback
      
      * Remove unnecessary imports
      
      * Remove `return await`s that I missed
      
      * use arrow functions instead
      fd22fc3e
  18. 29 Aug, 2020 1 commit
  19. 28 Aug, 2020 2 commits
  20. 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
  21. 11 Aug, 2020 1 commit
  22. 16 Jul, 2020 1 commit
  23. 15 Jul, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] generate a synthetic flutter_gen package on pub get (#61261) · d8b6fa15
      Jonah Williams authored
      Allow configuring the flutter_manifest to support a synthetic package, this is done through flutter: generate: true.
      
      When running pub get, insert a flutter_gen entry into the packages if it does not already exist. This points to .dart_tool/flutter_gen, which can be updated to contain the generated intl sources (But doesn't currently)
      
      Adds an integration test that verifies this code can be run and imported when enabled.
      
      Part of #60914
      d8b6fa15
  24. 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
  25. 18 Jun, 2020 1 commit
    • 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
  26. 09 Jun, 2020 1 commit
  27. 04 Jun, 2020 1 commit
  28. 27 Apr, 2020 1 commit
  29. 21 Apr, 2020 1 commit
  30. 05 Mar, 2020 1 commit
  31. 25 Feb, 2020 1 commit
    • Nate Bosch's avatar
      Don't use a default test randomize ordering seed (#51018) · 9228b87e
      Nate Bosch authored
      Fixes #51010
      
      The test package differentiates between passing and not passing this
      argument. A previous version had a bug that treated passing `0`
      identically to not passing the argument, and the flutter test runner
      relied on this bug by always passing a value and using a default of `0`.
      
      - Remove the argument defaults throughout to make it clear that `null`
        is a valid value and the default.
      - Remove the argument defaulting on the argument parser.
      - Update the wording of the usage for this argument, this will also be
        updated on the `package:test` side.
      9228b87e
  32. 23 Feb, 2020 1 commit