------------- Add libcurl to media_cas_packager_sdk. libcurl will later be used by a key fetcher to retrieve entitlement key from License Server using a HTTP request. ------------- Add a function named parsehelper to parse DCSL from the key smith response. ------------- Move wv_cas_key_fetcher to media_cas_packager_sdk so partners can use it request entitlement keys from License Server. ------------- Add pkcs7 write method to x509_cert.cc ------------- Update boringssl_repo to latest in master-with-bazel ------------- Add a TsPacket class to media_cas_packager_sdk to allow the construction of a ECM TS packet in the SDK. ------------- Move InsertEcm() from our internal CAS directory to the media_cas_packager_sdk, to be used to build a ECM TS packet by the SDK. ------------- Add METADATA in common folder ------------- Refactoring of certificate verification into DrmRootCertificate. ------------- Extend the default duration of leaf certificates. ------------- Fix moe_test ------------- Add a new method to WvCasEcm to allow partner to create a TS packet carrying the generated ECM. ------------- Change from SHA1 to SHA256 for Cast certificates ------------- Update crypto mode enumeration to match WV ECM document ------------- Fix the way we set the validity dates ------------- Move exported_root/util/status to common/ to prepare for util::Status migration Also added constructor/operator to copy from/to util::Status. ------------- Add GenerateDCSLrequest function to certificate_util.h. ------------- Fix build break ------------- Allow 'table_id' (in the section header) be specified by caller of SDK method WvCasEcm::GenerateTsPacket(). ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=224535399
91 lines
2.2 KiB
Python
91 lines
2.2 KiB
Python
workspace(name = "media_cas_packager_sdk")
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository", "git_repository")
|
|
|
|
# CCTZ (Time-zone framework), needed by abseil.
|
|
git_repository(
|
|
name = "com_googlesource_code_cctz",
|
|
remote = "https://github.com/google/cctz.git",
|
|
tag = "v2.2",
|
|
)
|
|
|
|
git_repository(
|
|
name = "abseil_repo",
|
|
commit = "475d64f2de7403a01b1b36c487328ed41d29c20c", #2018-04-10
|
|
remote = "https://github.com/abseil/abseil-cpp.git",
|
|
)
|
|
|
|
git_repository(
|
|
name = "protobuf_repo",
|
|
remote = "https://github.com/google/protobuf.git",
|
|
tag = "v3.5.0",
|
|
)
|
|
|
|
git_repository(
|
|
name = "boringssl_repo",
|
|
commit = "14164f6fef47b7ebd97cdb0cea1624eabd6fe6b8", # 2018-11-26
|
|
remote = "https://github.com/google/boringssl.git",
|
|
)
|
|
|
|
git_repository(
|
|
name = "gflags_repo",
|
|
commit = "fe57e5af4db74ab298523f06d2c43aa895ba9f98", # 2016-07-20
|
|
remote = "https://github.com/gflags/gflags.git",
|
|
)
|
|
|
|
git_repository(
|
|
name = "googletest_repo",
|
|
commit = "9816b96a6ddc0430671693df90192bbee57108b6", # 2017-08-11
|
|
remote = "https://github.com/google/googletest.git",
|
|
)
|
|
|
|
new_git_repository(
|
|
name = "glog_repo",
|
|
build_file = "@//:glog.BUILD",
|
|
commit = "0472b91c5defdf90cff7292e3bf7bd86770a9a0a", # 2016-07-13
|
|
remote = "https://github.com/google/glog.git",
|
|
)
|
|
|
|
new_git_repository(
|
|
name = "curl_repo",
|
|
build_file = "@//:external_build_files/curl.BUILD",
|
|
commit = "9cf7b7e66089ee2150ff6e5709a3cca91841ec0b", # 2018-11-16
|
|
remote = "https://github.com/curl/curl.git",
|
|
)
|
|
|
|
new_git_repository(
|
|
name = "zlib_repo",
|
|
build_file = "@//:external_build_files/zlib.BUILD",
|
|
commit = "cacf7f1d4e3d44d871b605da3b647f07d718623f", # 2017-01-15
|
|
remote = "https://github.com/madler/zlib.git",
|
|
)
|
|
|
|
bind(
|
|
name = "protobuf",
|
|
actual = "@protobuf_repo//:protobuf",
|
|
)
|
|
|
|
bind(
|
|
name = "openssl",
|
|
actual = "@boringssl_repo//:crypto",
|
|
)
|
|
|
|
bind(
|
|
name = "gflags",
|
|
actual = "@gflags_repo//:gflags",
|
|
)
|
|
|
|
bind(
|
|
name = "gtest",
|
|
actual = "@googletest_repo//:gtest",
|
|
)
|
|
|
|
bind(
|
|
name = "gtest_main",
|
|
actual = "@googletest_repo//:gtest_main",
|
|
)
|
|
|
|
bind(
|
|
name = "glog",
|
|
actual = "@glog_repo//:glog",
|
|
)
|