-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xamarin.Android.Build.Tasks] move <GenerateTypeMaps/> into <Generate…
…JavaStubs/> 95afa4d originally split up `<GenerateJavaStubs/>` and moved the typemap generation to a new target. Unfortunately, this is causing some of the build performance tests to fail: Build_CSharp_Change Exceeded expected time of 4100ms, actual 5460ms This would be equivalent to editing `MainActivity.cs` and doing an incremental build. If we remove the `<GenerateTypeMaps/>` MSBuild task and keep the logic in `<GenerateJavaStubs/>`, then we can reuse the `DirectoryAssemblyResolver` and any `AssemblyDefinition` already loaded in memory. We can tackle splitting up `<GenerateJavaStubs/>` at a later date. I also had to allow `supportedAbis` to be an empty list, as this happens during the designer's MSBuild targets.
- Loading branch information
1 parent
21337d8
commit dfe29a8
Showing
8 changed files
with
111 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
xamarin/monodroid:master@01a4e0a0c436bf1b0b62acf870cc06e67e62034c | ||
mono/mono:2019-12@8b72dbb708681fbde7f0da13fe76d128d62f8686 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 0 additions & 103 deletions
103
src/Xamarin.Android.Build.Tasks/Tasks/GenerateTypeMaps.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.