[ Merge of http://go/wvgerrit/108064 ] The Widevine License Agreement has been renamed to use inclusive language. This covers files in the core directory. Bug: 168562298 Test: verified compilation (comment only change) Change-Id: I8ae5a10cbfdf7faae6a2735e57b33729763f10b8
18 lines
505 B
C++
18 lines
505 B
C++
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine License
|
|
// Agreement.
|
|
|
|
// Use in place of the gtest_main in order to initialize the WvCdmTestBase using
|
|
// command line parameters.
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "log.h"
|
|
#include "test_base.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
if (!wvcdm::WvCdmTestBase::Initialize(argc, argv)) return 0;
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|