130 lines
3.1 KiB
Python
130 lines
3.1 KiB
Python
# Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
#source code may only be used and distributed under the Widevine License
|
|
#Agreement.
|
|
#
|
|
# Builds under the CDM ./build.py (target platform) build system
|
|
# Refer to the distribution package's README for details.
|
|
{
|
|
'target_defaults': {
|
|
'type': 'executable',
|
|
'includes': [
|
|
'oemcrypto_fuzztests.gypi',
|
|
],
|
|
},
|
|
'variables': {
|
|
# Flag to select appropriate underlying oemcrypto implementation when
|
|
# buiding fuzz binaries.
|
|
'oemcrypto_implementation_version%': 'reference',
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'oemcrypto_load_license_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_license_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_load_provisioning_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_provisioning_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_load_renewal_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_renewal_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_license_request_fuzz',
|
|
'sources': [
|
|
'oemcrypto_license_request_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_provisioning_request_fuzz',
|
|
'sources': [
|
|
'oemcrypto_provisioning_request_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_renewal_request_fuzz',
|
|
'sources': [
|
|
'oemcrypto_renewal_request_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_decrypt_cenc_fuzz',
|
|
'sources': [
|
|
'oemcrypto_decrypt_cenc_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_load_entitled_content_keys_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_entitled_content_keys_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_generic_encrypt_fuzz',
|
|
'sources': [
|
|
'oemcrypto_generic_encrypt_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_generic_decrypt_fuzz',
|
|
'sources': [
|
|
'oemcrypto_generic_decrypt_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_generic_sign_fuzz',
|
|
'sources': [
|
|
'oemcrypto_generic_sign_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_generic_verify_fuzz',
|
|
'sources': [
|
|
'oemcrypto_generic_verify_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_generate_rsa_signature_fuzz',
|
|
'sources': [
|
|
'oemcrypto_generate_rsa_signature_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_load_usage_table_header_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_usage_table_header_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_load_usage_entry_fuzz',
|
|
'sources': [
|
|
'oemcrypto_load_usage_entry_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_deactivate_usage_entry_fuzz',
|
|
'sources': [
|
|
'oemcrypto_deactivate_usage_entry_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_report_usage_fuzz',
|
|
'sources': [
|
|
'oemcrypto_report_usage_fuzz.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oemcrypto_copy_buffer_fuzz',
|
|
'sources': [
|
|
'oemcrypto_copy_buffer_fuzz.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|