Skip to content

Commit 8600d70

Browse files
authored
Upgrade Perfetto Trace Processor from v18.0(2021-08-02) to v24.2 (2022-02-10). It has some perf upgrades like "Speeded up proto trace ingestion by 2x" (#85)
1 parent cf3136d commit 8600d70

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

PerfettoCds/PerfettoCds.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>1.2.2</Version>
5+
<Version>1.3.0</Version>
66
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
77
<Authors>Microsoft</Authors>
88
<Company>Microsoft Corp.</Company>
@@ -28,8 +28,9 @@
2828
</ItemGroup>
2929

3030
<Target Name="DownloadTraceProcessorShell">
31+
<!-- Keep in sync with other DownloadTraceProcessorShell Targets -->
3132
<!-- Download the trace_processor.exe from Perfetto's GitHub release and copy it to the output directory-->
32-
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v18.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
33+
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v24.2/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3334
<Unzip SourceFiles="$(TargetDir)\windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3435
<Copy SourceFiles="$(TargetDir)\windows-amd64\trace_processor_shell.exe" DestinationFolder="$(TargetDir)" />
3536
<RemoveDir Directories="$(TargetDir)\windows-amd64" />

PerfettoProcessor/PerfettoProcessor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>1.2.2</Version>
5+
<Version>1.3.0</Version>
66
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
77
<Authors>Microsoft</Authors>
88
<Company>Microsoft Corp.</Company>

PerfettoUnitTest/PerfettoUnitTest.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@
2626
</ItemGroup>
2727

2828
<Target Name="DownloadTraceProcessorShell">
29-
<!-- Download the trace_processor.exe from Perfetto's GitHub release and copy it to the output directory-->
30-
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v18.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
29+
<!-- Keep in sync with other DownloadTraceProcessorShell Targets -->
30+
<!-- Download the trace_processor.exe from Perfetto's GitHub release and copy it to the output directory-->
31+
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v24.2/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3132
<Unzip SourceFiles="$(TargetDir)\windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3233
<Copy SourceFiles="$(TargetDir)\windows-amd64\trace_processor_shell.exe" DestinationFolder="$(TargetDir)" />
3334
<RemoveDir Directories="$(TargetDir)\windows-amd64" />

0 commit comments

Comments
 (0)