mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 18:38:01 +00:00
20 lines
488 B
Python
20 lines
488 B
Python
|
# The lists/dictionaries in this file let vendors build/link custom libraries
|
||
|
|
||
|
# paths are relative to platform/crosvm dir
|
||
|
DLLS = [
|
||
|
]
|
||
|
|
||
|
VS_PROJECTS_FROM_CMAKE = {
|
||
|
# Format of this dictionary is:
|
||
|
# "dll_path": { "src": "source_code_path", "cmake_flags": "flags", "cmake_flags_for_features": {"feature": "flags"}}
|
||
|
}
|
||
|
|
||
|
WINDOWS_BUILDABLE_DLLS = {
|
||
|
# Format of this dictionary is:
|
||
|
# dll_path: (proj_path/sln_path, build_flags)
|
||
|
}
|
||
|
|
||
|
BINARIES = [
|
||
|
# List of binaries to include.
|
||
|
]
|