Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4462)

Unified Diff: chrome/installer/linux/BUILD.gn

Issue 2401033003: Fix gn installer/linux/BUILD.gn with target_arch=arm (Closed)
Patch Set: . Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/linux/BUILD.gn
diff --git a/chrome/installer/linux/BUILD.gn b/chrome/installer/linux/BUILD.gn
index fcc2d753fad79d4979df45495f45ce918ad4eabd..1394af3a9669a5282951fd57bc1340eacc2e48b5 100644
--- a/chrome/installer/linux/BUILD.gn
+++ b/chrome/installer/linux/BUILD.gn
@@ -238,7 +238,8 @@ template("linux_package") {
packaging_files_binaries += [ "$root_out_dir/nacl_irt_arm.nexe" ]
}
- if (is_chrome_branded) {
+ # The widevine BUILD.gn only produces shared libraries for x86 and x64
+ if (is_chrome_branded && (current_cpu == "x86" || current_cpu == "x64")) {
packaging_files_binaries += [
"$root_out_dir/$widevine_cdm_path/libwidevinecdmadapter.so",
"$root_out_dir/$widevine_cdm_path/libwidevinecdm.so",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698