Updates to OEMCrypto API, OPK, ODK, and unit tests. See the file CHANGELOG.md for details.
19 lines
488 B
Python
19 lines
488 B
Python
# Copyright 2020 Google LLC. All Rights Reserved. This file and proprietary
|
|
# source code may only be used and distributed under the Widevine License
|
|
# Agreement.
|
|
{
|
|
'conditions': [
|
|
['privacy_crypto_impl=="openssl"', {
|
|
'libraries': [
|
|
'-lcrypto',
|
|
'-lssl',
|
|
],
|
|
}],
|
|
['privacy_crypto_impl=="boringssl" or privacy_crypto_impl=="apple"', {
|
|
'dependencies': [
|
|
'<(boringssl_libssl_path)',
|
|
], # dependencies
|
|
}],
|
|
], # conditions
|
|
}
|