mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 20:04:20 +00:00
generated files and a list of excluded files are skipped. Others are fixed to include the missing header. BUG=b:246579983 TEST=./tools/health-check --all copyright_header Change-Id: I13e9bf79df18789f1ed4b83fc47c0c2e080d70a8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3894240 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
22 lines
630 B
Python
22 lines
630 B
Python
# Copyright 2022 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# 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.
|
|
]
|