(2) Add a new enum value for kDvbCsa. (3) Allow caller to specify CTR, CBC, as well as CSA when using the ecm genertor from the SDK. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219707788
54 lines
1.2 KiB
Python
54 lines
1.2 KiB
Python
################################################################################
|
|
# Copyright 2018 Google LLC.
|
|
#
|
|
# This software is licensed under the terms defined in the Widevine Master
|
|
# License Agreement. For a copy of this agreement, please contact
|
|
# widevine-licensing@google.com.
|
|
################################################################################
|
|
|
|
# Build file for the example code.
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
|
|
filegroup(
|
|
name = "binary_release_files",
|
|
srcs = [
|
|
"wv_cas_ecm_example.cc",
|
|
":wv_cas_ecm_example",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "constants",
|
|
hdrs = ["constants.h"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "simulcrypt_client",
|
|
srcs = ["simulcrypt_client.cc"],
|
|
deps = [
|
|
"//base",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "test_simulcrypt_messages",
|
|
hdrs = ["test_simulcrypt_messages.h"],
|
|
deps = [
|
|
"//base",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "wv_cas_ecm_example",
|
|
srcs = ["wv_cas_ecm_example.cc"],
|
|
deps = [
|
|
"@abseil_repo//absl/base:core_headers",
|
|
"//media_cas_packager_sdk/public:wv_cas_ecm",
|
|
"//media_cas_packager_sdk/public:wv_cas_types",
|
|
],
|
|
)
|