Make change and version bump to AV1A.240716.001

Snap for 12098137 from 8defa640ff to vic-widevine-partner-release

Change-Id: I115bb8ebb37e8ec028fbe00267c74a39aeb9cf7c
This commit is contained in:
Android Build Coastguard Worker
2024-07-16 23:11:13 +00:00
3 changed files with 8 additions and 6 deletions

View File

@@ -97,7 +97,9 @@ function build_bundles() {
# inputs: ${DIST_DIR}/${apex}.aab
# outputs: ${DIST_DIR}/dev_keys_signed/${apex}/${apex}.apks
function sign_bundles() {
${DEV_SIGN_BUNDLE} --input_dir "${DIST_DIR}" \
${DEV_SIGN_BUNDLE} \
--java_binary_path "${ANDROID_JAVA_HOME}/bin/java" \
--input_dir "${DIST_DIR}" \
--output_dir "${DIST_DIR}/dev_keys_signed"
}
@@ -106,7 +108,7 @@ function configure_build() {
# Assign to a variable and eval that, since bash ignores any error status from
# the command substitution if it's directly on the eval line.
local -r vars="$(TARGET_PRODUCT='' build/soong/soong_ui.bash --dumpvars-mode \
--vars="TMPDIR OUT_DIR")"
--vars="ANDROID_JAVA_HOME TMPDIR OUT_DIR")"
eval "${vars}"
declare -gr BUNDLETOOL=${OUT_DIR}/host/linux-x86/bin/bundletool

View File

@@ -213,7 +213,7 @@ TEST_P(OEMCryptoLicenseTest, LoadKeyNoNonceTwiceAPI16) {
ASSERT_NO_FATAL_FAILURE(license_messages_.EncryptAndSignResponse());
ASSERT_EQ(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
// A second load, should NOT succeed.
ASSERT_EQ(OEMCrypto_ERROR_LICENSE_RELOAD, license_messages_.LoadResponse());
ASSERT_NE(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
}
// Verify that a second license may not be loaded in a session.
@@ -223,7 +223,7 @@ TEST_P(OEMCryptoLicenseTest, LoadKeyWithNonceTwiceAPI16) {
ASSERT_NO_FATAL_FAILURE(license_messages_.EncryptAndSignResponse());
ASSERT_EQ(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
// A second load, should NOT succeed.
ASSERT_EQ(OEMCrypto_ERROR_LICENSE_RELOAD, license_messages_.LoadResponse());
ASSERT_NE(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
}
// This tests load license with an 8k license response.
@@ -496,7 +496,7 @@ TEST_P(OEMCryptoLicenseTest, LoadLicenseAgainFailureAPI16) {
ASSERT_NO_FATAL_FAILURE(license_messages_.CreateDefaultResponse());
ASSERT_NO_FATAL_FAILURE(license_messages_.EncryptAndSignResponse());
ASSERT_EQ(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
ASSERT_EQ(OEMCrypto_ERROR_LICENSE_RELOAD, license_messages_.LoadResponse());
ASSERT_NE(OEMCrypto_SUCCESS, license_messages_.LoadResponse());
}
TEST_P(OEMCryptoLicenseTest, LoadKeysBadSignatureAPI16) {

View File

@@ -1 +1 @@
AV1A.240704.001
AV1A.240716.001