36 lines
890 B
Python
36 lines
890 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.
|
|
{
|
|
'includes': [
|
|
'platform_properties.gypi',
|
|
],
|
|
'variables': {
|
|
# Directory where OEMCrypto header, test, and reference files lives.
|
|
'oemcrypto_dir': '../oemcrypto',
|
|
# Directory where widevine utilities live.
|
|
'util_dir': '../util',
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'oec_ref',
|
|
'type': 'static_library',
|
|
'standalone_static_library': 1,
|
|
'hard_dependency': 1,
|
|
'includes': [
|
|
'../oemcrypto/ref/oec_ref.gypi',
|
|
],
|
|
'dependencies': [
|
|
'<(oemcrypto_dir)/util/oec_ref_util.gyp:oec_ref_util',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'oec_ref_shared',
|
|
'type': 'shared_library',
|
|
'dependencies': [
|
|
'oec_ref'
|
|
],
|
|
},
|
|
],
|
|
}
|