Files
ce_cdm/platforms/example/oemcrypto.gyp
John "Juce" Bruce f11df1e144 Source release 17.1.1
2022-11-29 12:54:04 -08:00

21 lines
650 B
Python

# Copyright 2022 Google LLC. All Rights Reserved. This file and proprietary
# source code may only be used and distributed under the Widevine License
# Agreement.
{
'targets': [
{
'target_name': 'oemcrypto',
'type': 'static_library',
# For a real device, this GYP target should include the files necessary to
# implement OEMCrypto. However, since the CE CDM repository does not
# include an OEMCrypto implementation, we have to include a dummy file
# here.
'include_dirs': [
'../../oemcrypto/include',
'../../util/include',
],
'sources': ['no_oemcrypto.cpp'],
},
],
}