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

Unified Diff: third_party/adobe/flash/BUILD.gn

Issue 2340643002: Do not reference non-existant bundled flash on Chrome OS. (Closed)
Patch Set: Created 4 years, 3 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
Index: third_party/adobe/flash/BUILD.gn
diff --git a/third_party/adobe/flash/BUILD.gn b/third_party/adobe/flash/BUILD.gn
index 6a15c0bbe51f34619e4c8caa5142a327317fb551..87ef093ba15ef068163267f72af0860e0f2a9161 100644
--- a/third_party/adobe/flash/BUILD.gn
+++ b/third_party/adobe/flash/BUILD.gn
@@ -5,13 +5,13 @@
import("//build/config/chrome_build.gni")
if (is_chrome_branded) {
- if (is_linux && current_cpu == "x86") {
+ if (is_linux && !is_chromeos && current_cpu == "x86") {
flapper_version_h_file = "symbols/ppapi/linux/flapper_version.h"
flapper_binary_files = [
"binaries/ppapi/linux/libpepflashplayer.so",
"binaries/ppapi/linux/manifest.json",
]
- } else if (is_linux && current_cpu == "x64") {
+ } else if (is_linux && !is_chromeos && current_cpu == "x64") {
flapper_version_h_file = "symbols/ppapi/linux_x64/flapper_version.h"
flapper_binary_files = [
"binaries/ppapi/linux_x64/libpepflashplayer.so",
« chrome/common/chrome_content_client.cc ('K') | « chrome/common/chrome_content_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698