The top level makefile will build license_protocol_protos.a, which is needed by libcdm.a. Unit and end-to-end tests are now build separately under cdm/test. Also, the tests use Google C++ Testing Framework, so please build the gtest library from external/gtest and run "mm" once before building the tests. Or just run "mmma vendor/widevine/libwvdrmengine" (or mma in vendor/widevine/libwvdrmengine") once. Change-Id: Iec5a7a974e2f23651191b7325230d9ae3d6b83f2
24 lines
519 B
Makefile
24 lines
519 B
Makefile
# ----------------------------------------------------------------
|
|
# Builds CDM Tests
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
test_name := cdm_engine_test
|
|
test_src_dir := ../core/test
|
|
include $(LOCAL_PATH)/unit-test.mk
|
|
|
|
test_name := http_socket_test
|
|
test_src_dir := ../core/test
|
|
include $(LOCAL_PATH)/unit-test.mk
|
|
|
|
test_name := license_unittest
|
|
test_src_dir := ../core/test
|
|
include $(LOCAL_PATH)/unit-test.mk
|
|
|
|
test_name := request_license_test
|
|
test_src_dir := .
|
|
include $(LOCAL_PATH)/unit-test.mk
|
|
|
|
test_name :=
|
|
test_src_dir :=
|