Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
661e0350
Unverified
Commit
661e0350
authored
Apr 23, 2019
by
Jonah Williams
Committed by
GitHub
Apr 23, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable all Dart fingerprinters (#31463)
parent
1fcd71bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
build.dart
packages/flutter_tools/lib/src/base/build.dart
+10
-8
mac.dart
packages/flutter_tools/lib/src/ios/mac.dart
+1
-0
No files found.
packages/flutter_tools/lib/src/base/build.dart
View file @
661e0350
...
...
@@ -196,10 +196,11 @@ class AOTSnapshotter {
},
depfilePaths:
<
String
>[],
);
if
(
await
fingerprinter
.
doesFingerprintMatch
())
{
printTrace
(
'Skipping AOT snapshot build. Fingerprint match.'
);
return
0
;
}
// TODO(jonahwilliams): re-enable once this can be proved correct.
// if (await fingerprinter.doesFingerprintMatch()) {
// printTrace('Skipping AOT snapshot build. Fingerprint match.');
// return 0;
// }
final
SnapshotType
snapshotType
=
SnapshotType
(
platform
,
buildMode
);
final
int
genSnapshotExitCode
=
await
_timedStep
(
'gen_snapshot'
,
()
=>
genSnapshot
.
run
(
...
...
@@ -467,10 +468,11 @@ class JITSnapshotter {
},
depfilePaths:
<
String
>[],
);
if
(
await
fingerprinter
.
doesFingerprintMatch
())
{
printTrace
(
'Skipping JIT snapshot build. Fingerprint match.'
);
return
0
;
}
// TODO(jonahwilliams): re-enable once this can be proved correct.
// if (await fingerprinter.doesFingerprintMatch()) {
// printTrace('Skipping JIT snapshot build. Fingerprint match.');
// return 0;
// }
final
SnapshotType
snapshotType
=
SnapshotType
(
platform
,
buildMode
);
final
int
genSnapshotExitCode
=
await
genSnapshot
.
run
(
...
...
packages/flutter_tools/lib/src/ios/mac.dart
View file @
661e0350
...
...
@@ -384,6 +384,7 @@ Future<XcodeBuildResult> buildXcodeProject({
],
properties:
<
String
,
String
>{},
);
final
bool
didPodInstall
=
await
cocoaPods
.
processPods
(
iosProject:
project
.
ios
,
iosEngineDir:
flutterFrameworkDir
(
buildInfo
.
mode
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment