21 lines
650 B
Python
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'],
|
|
},
|
|
],
|
|
}
|