mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add semantics constants to the exported symbols list for the embedder library (flutter/engine#37526)
Fixes https://github.com/flutter/flutter/issues/114657
This commit is contained in:
parent
3085f214f9
commit
0010be93cd
@ -8,6 +8,7 @@
|
||||
global:
|
||||
Flutter*;
|
||||
__Flutter*;
|
||||
kFlutter*;
|
||||
kDartIsolateSnapshotData;
|
||||
kDartIsolateSnapshotInstructions;
|
||||
kDartVmSnapshotData;
|
||||
|
||||
@ -274,7 +274,8 @@ int _checkLinux(String outPath, String nmPath, Iterable<String> builds) {
|
||||
break;
|
||||
}
|
||||
if (!(entry.name.startsWith('Flutter')
|
||||
|| entry.name.startsWith('__Flutter'))) {
|
||||
|| entry.name.startsWith('__Flutter')
|
||||
|| entry.name.startsWith('kFlutter'))) {
|
||||
print('ERROR: $libFlutter exports an unexpected symbol name: ($entry)');
|
||||
print(' Library has $entries.');
|
||||
failures++;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user