Commit 68ac891a authored by Ben Mason's avatar Ben Mason Committed by Commit Bot

build: Ensure the trichrome_library_64_32_apk versioncode is aligned with the other 64_32 variants.

Bug: 1010749
Change-Id: Iec84f253224384fb4e94906109c520a120042a95
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1880703Reviewed-by: default avatarPeter Collingbourne <pcc@chromium.org>
Commit-Queue: Ben Mason <benmason@chromium.org>
Cr-Commit-Position: refs/heads/master@{#709529}
parent 6fd1fb81
......@@ -76,7 +76,12 @@ template("trichrome_library_apk_tmpl") {
uncompress_shared_libraries = true
uncompress_dex = use_uncompressed_dex
version_name = chrome_version_name
version_code = trichrome_version_code
if (defined(invoker.is_64_bit_browser) && invoker.is_64_bit_browser) {
version_code = trichrome_64_32_version_code
} else {
version_code = trichrome_version_code
}
# TODO(torne): make minsdk=Q once we no longer build hacky P version
min_sdk_version = android_sdk_version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment