diff options
author | gle6ru381 <gle6ru381@yandex-team.com> | 2023-07-12 18:42:13 +0300 |
---|---|---|
committer | gle6ru381 <gle6ru381@yandex-team.com> | 2023-07-12 18:42:13 +0300 |
commit | f8eb8042ddc61b28c14d34852ead6d9a614de880 (patch) | |
tree | 6bad7a4a02faad318c4931ece57275c1851f34f2 | |
parent | 767f68dedab293899f7d4e810bba70904f886e05 (diff) | |
download | ydb-f8eb8042ddc61b28c14d34852ead6d9a614de880.tar.gz |
Dart dictionary, vector, optional, variant, enums and peerdir common
-rw-r--r-- | build/plugins/maps_mobile_idl.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/plugins/maps_mobile_idl.py b/build/plugins/maps_mobile_idl.py index 1964e19192..5de002083b 100644 --- a/build/plugins/maps_mobile_idl.py +++ b/build/plugins/maps_mobile_idl.py @@ -360,7 +360,14 @@ class DefaultRule(BaseRule): result.add(self.context.runtime_include('bindings/flutter/exception.h')) result.add(self.context.runtime_include('bindings/flutter/export.h')) result.add(self.context.runtime_include('bindings/flutter/to_native.h')) + result.add(self.context.runtime_include('bindings/flutter/to_native_fwd.h')) result.add(self.context.runtime_include('bindings/flutter/to_platform.h')) + result.add(self.context.runtime_include('bindings/flutter/to_platform_fwd.h')) + result.add(self.context.runtime_include('bindings/flutter/vector.h')) + result.add(self.context.runtime_include('bindings/flutter/string_map.h')) + result.add(self.context.runtime_include('bindings/flutter/helper.h')) + result.add(self.context.runtime_include('bindings/flutter/meta_type.h')) + result.add(self.context.runtime_include('bindings/flutter/native.h')) return result result.add('yandex/maps/export.h') |