1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-13 08:50:56 +00:00

core: add storage module to frozen build

This commit is contained in:
matejcik 2019-11-11 15:52:46 +01:00
parent 75622d92d2
commit c9fca25531
2 changed files with 4 additions and 0 deletions

View File

@ -442,6 +442,8 @@ if FROZEN:
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/ui/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/wire/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'storage/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/messages/*.py',
exclude=[
SOURCE_PY_DIR + 'trezor/messages/Binance*.py',

View File

@ -408,6 +408,8 @@ if FROZEN:
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/ui/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/wire/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'storage/*.py'))
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/messages/*.py',
exclude=[
SOURCE_PY_DIR + 'trezor/messages/Binance*.py',