- 13 Nov, 2022 1 commit
-
-
Jonah Williams authored
Revert "[web] Add `--local-web-sdk` flag and use precompiled platform kernels for dart2js and ddc (#114639)" (#115242) This reverts commit 0e9ee367.
-
- 12 Nov, 2022 1 commit
-
-
Jackson Gardner authored
* Dart2JS build step looks for compiled platform binaries. * Use new locations of platform binaries. * Added --local-web-sdk command line flag. * Need to use the matching frontend server when doing ddc stuff. * Update packages/flutter_tools/lib/src/test/web_test_compiler.dart Co-authored-by:
Mouad Debbar <mouad.debbar@gmail.com> * Update packages/flutter_tools/lib/src/runner/flutter_command_runner.dart Co-authored-by:
Mouad Debbar <mouad.debbar@gmail.com> * Formatting issues. * Need to use URI format for platform dill. * Fix resident runner tests. * Fix analysis issue. * Fix and add unit tests. * Add some useful comments. * Refine doc comments for flags. Co-authored-by:
Mouad Debbar <mouad.debbar@gmail.com>
-
- 11 Nov, 2022 1 commit
-
-
blendthink authored
[flutter_tools] Fix so that the value set by `--dart-define-from-file` can be passed to Gradle (#114297) * Add dartDefineConfigJsonMap to the checklist * Fix typo * Align formatting with other code * Fix toGradleConfig method
-
- 04 Oct, 2022 1 commit
-
-
Jenn Magder authored
-
- 26 Sep, 2022 1 commit
-
-
haizhu authored
-
- 30 Aug, 2022 1 commit
-
-
Jenn Magder authored
-
- 29 Aug, 2022 1 commit
-
-
Zachary Anderson authored
-
- 24 Aug, 2022 1 commit
-
-
eggfly authored
-
- 29 Jul, 2022 1 commit
-
-
Jenn Magder authored
-
- 27 Jun, 2022 1 commit
-
-
Loïc Sharma authored
Previously developers had to edit their `Runner.rc` file to update their executable's version information. Now, version information will automatically be set from `flutter build`'s arguments or the `pubspec.yaml` file for new projects. Addresses https://github.com/flutter/flutter/issues/73652
-
- 14 May, 2022 1 commit
-
-
Chris Bracken authored
Until recently, BuildInfo.packagesPath defaulted to `.packages` however, the .packages file has been deprecated [1] and is being removed. In https://github.com/flutter/flutter/pull/99677 the default was changed to `.dart_tool/package_config.json` but the doc comment was accidentally updated to `.dart_tool/packages`. This corrects it to the true default value. 1: https://github.com/dart-lang/sdk/issues/48272 Spotted in the midst of some related cleanup relating to https://github.com/flutter/flutter/issues/103775
-
- 26 Apr, 2022 1 commit
-
-
Jonah Williams authored
-
- 12 Apr, 2022 1 commit
-
-
Jenn Magder authored
-
- 11 Apr, 2022 1 commit
-
-
Yang Chao authored
-
- 10 Apr, 2022 1 commit
-
-
Janko Djuric authored
-
- 30 Mar, 2022 1 commit
-
-
Sigurd Meldgaard authored
-
- 22 Mar, 2022 1 commit
-
-
Chris Bracken authored
Previously, https://github.com/flutter/flutter/pull/100271 enabled building universal macOS binaries by default, but included a bug causing the arm64 App.framework to be built such that the TEXT section containing the app instructions built by gen_snapshot incorrectly contained x86_64 instructions rather than arm64 instructions. When building macOS (and iOS) apps, Flutter builds them in three components: * The Runner application: built by Xcode * The bundled App.framework: built from assembly code generated by gen_snapshot from the application's Dart sources. * The bundled FlutterMacOS.framework: built as part of the engine build and packaged by copying the distributed binary framework from our artifacts cache. Building App.framework consists of the following steps: * For each architecture, invoke gen_snapshot to generate architecture-specific assembly code, which is then built to object code and linked into an architecture-specific App.framework. * Use the `lipo` tool to generate a universal binary that includes both x86_64 and arm64 architectures. Previously, we were building architecture specific App.framework binaries. However, for all architectures we were (mistakenly) invoking the general `gen_snapshot` tool (which emitted x64 instructions, and which is now deprecated) instead of the architecture-specific `gen_snapshot_x86` and `gen_snapshot_arm64` builds which emit instructions for the correct architecture. This change introduces a small refactoring, which is to split the `getNameForDarwinArch` function into two functions: * `getDartNameForDarwinArch`: the name for the specified architecture as used in the Dart SDK, for example as the suffix of `gen_snapshot`. * `getNameForDarwinArch`: the name for the specified architecture as used in Apple tools, for example as an argument to `lipo`. For consistency, and to match developer expectations on Darwin platforms, this is also the name used in Flutter's build outputs. Issue: https://github.com/flutter/flutter/issues/100348
-
- 09 Mar, 2022 1 commit
-
-
Lau Ching Jun authored
-
- 04 Feb, 2022 1 commit
-
-
Michael Tamm authored
-
- 11 Nov, 2021 1 commit
-
-
Greg Spencer authored
-
- 02 Nov, 2021 1 commit
-
-
Jenn Magder authored
-
- 19 Oct, 2021 1 commit
-
-
Gary Qian authored
-
- 14 Oct, 2021 2 commits
-
-
Zachary Anderson authored
This reverts commit 1d9edde0.
-
Gary Qian authored
-
- 11 Oct, 2021 1 commit
-
-
Ian Hickson authored
-
- 06 Oct, 2021 1 commit
-
-
Jenn Magder authored
-
- 23 Aug, 2021 1 commit
-
-
Jonah Williams authored
-
- 30 Jun, 2021 3 commits
-
-
Jenn Magder authored
-
Zachary Anderson authored
This reverts commit a1020512.
-
Jenn Magder authored
-
- 01 Jun, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 May, 2021 1 commit
-
-
Lau Ching Jun authored
To specify the dill file that will be used to initialize the resident compiler, instead of the default cached version.
-
- 26 May, 2021 1 commit
-
-
Jenn Magder authored
-
- 20 May, 2021 1 commit
-
-
Jonah Williams authored
-
- 08 May, 2021 1 commit
-
-
Jenn Magder authored
-
- 28 Apr, 2021 1 commit
-
-
Matej Knopp authored
-
- 09 Apr, 2021 1 commit
-
-
Jonah Williams authored
-
- 03 Apr, 2021 1 commit
-
-
Jonah Williams authored
-
- 01 Apr, 2021 2 commits
-
-
Jenn Magder authored
-
Chris Bracken authored
-