50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
# Copyright 2013 Google Inc. All Rights Reserved.
|
|
#
|
|
# Builds under the CDM ./build.py (target platform) build system
|
|
# Refer to the distribution package's README for details.
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'wvcdm_shared_api_unittest',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'../cdm/test/cdm_api_1_test.cpp',
|
|
'../cdm/test/cdm_api_4_test.cpp',
|
|
'../cdm/test/cdm_test_main.cpp',
|
|
'../cdm/test/test_host_1.cpp',
|
|
'../cdm/test/test_host_4.cpp',
|
|
'../cdm/test/test_host_4_file_io.cpp',
|
|
'../cdm/test/test_util.cpp',
|
|
'../core/test/config_test_env.cpp',
|
|
'../core/test/license_request.cpp',
|
|
'../core/test/http_socket.cpp',
|
|
'../core/test/test_printers.cpp',
|
|
'../core/test/url_request.cpp',
|
|
],
|
|
'include_dirs': [
|
|
'include',
|
|
'../cdm/include',
|
|
'../core/include',
|
|
'../core/test',
|
|
'../oemcrypto/include',
|
|
],
|
|
'defines': [
|
|
'UNIT_TEST',
|
|
],
|
|
'libraries': [
|
|
'-lssl',
|
|
'-lcrypto',
|
|
'-lpthread',
|
|
],
|
|
'dependencies': [
|
|
'cdm.gyp:wvcdm_shared',
|
|
'../third_party/gmock.gyp:gmock',
|
|
'../third_party/gmock.gyp:gmock_main',
|
|
'../third_party/gmock.gyp:gtest',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|