25 lines
697 B
Python
25 lines
697 B
Python
# Copyright 2013 Google Inc. All Rights Reserved.
|
|
#
|
|
# Build the vendor's oemcrypto (simulated with mock for x86-64)
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'oemcrypto',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'../../../../core/include',
|
|
'../../../../oemcrypto/include',
|
|
'../../../../',
|
|
],
|
|
'sources': [
|
|
'../../../../oemcrypto/mock/src/oemcrypto_engine_mock.cpp',
|
|
'../../../../oemcrypto/mock/src/oemcrypto_key_mock.cpp',
|
|
'../../../../oemcrypto/mock/src/oemcrypto_keybox_mock.cpp',
|
|
'../../../../oemcrypto/mock/src/oemcrypto_mock.cpp',
|
|
'../../../../oemcrypto/mock/src/wvcrc.cpp',
|
|
],
|
|
},
|
|
],
|
|
}
|