Android development of the widevine CDM has been done on the jb-mr2 branch of the cdm code base. This CL contains a merge of that jb-mr2 work to CDM master, and also reflects the evolution of the common Modular DRM code base since jb-mr2 branched. Change-Id: I1d7e1a12d092c00044a4298261146cb97808d4ef
19 lines
537 B
C++
19 lines
537 B
C++
// Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
// For platform specific test vectors
|
|
|
|
#include <string>
|
|
|
|
namespace wvcdm {
|
|
namespace test_vectors {
|
|
|
|
// for FileStore unit tests
|
|
static const std::string kFileExists = "/system/bin/sh";
|
|
static const std::string kDirExists = "/system/bin";
|
|
static const std::string kFileDoesNotExist = "/system/bin/enoext";
|
|
static const std::string kDirDoesNotExist = "/system/bin_enoext";
|
|
static const std::string kTestDir = "/data/mediadrm/IDM0/";
|
|
|
|
} // namespace test_vectors
|
|
} // namespace wvcdm
|