Files
ce_cdm/cdm/cdm_unittests.gyp
Joey Parrish bd448c6252 Cherry-pick bug fixes from CDM main branch.
* Split device cert declaration from definition.
* Fix and rename CdmApi?Test.TimeTest.
* Fix max HDCP setting.

Change-Id: Idf0aea5c953a08c38a8beb20ec8ccc210e33f67a
2015-02-17 10:59:19 -08:00

52 lines
1.4 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/device_cert.cpp',
'../cdm/test/device_cert.h',
'../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',
],
},
],
}