Minimal implementation of Widevine MediaCAS ECMG.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=226515998
This commit is contained in:
Fang Yu
2018-12-21 11:17:37 -08:00
parent 7487ce5aa8
commit bc68878bdf
88 changed files with 2456 additions and 2774 deletions

View File

@@ -11,9 +11,7 @@
#include <gtest/gtest.h>
#define EXPECT_OK(expression) \
EXPECT_EQ(util::error::OK, expression.error_code())
#define ASSERT_OK(expression) \
ASSERT_EQ(util::error::OK, expression.error_code())
#define EXPECT_OK(expression) EXPECT_EQ(error::OK, expression.error_code())
#define ASSERT_OK(expression) ASSERT_EQ(error::OK, expression.error_code())
#endif // TESTING_GUNIT_H_