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

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

Issue 1332073002: Fix Linux installer dependencies on nacl_helper. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_nacl_build_for_chrome
Patch Set: patch for review Created 5 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
« 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 1605dea55c4bbd7d799593928009070cfb2ca934..7520f209ec1a59768d76a98ecbf7b4ea2c2ad061 100644
--- a/chrome/installer/linux/BUILD.gn
+++ b/chrome/installer/linux/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/chrome_build.gni")
+import("//build/config/features.gni")
import("//build/util/version.gni")
import("//chrome/version.gni")
@@ -144,10 +145,12 @@ group("installer_deps") {
":theme_files",
"//chrome",
"//chrome:packed_resources",
- "//components/nacl:nacl_helper",
"//sandbox/linux:chrome_sandbox",
"//third_party/adobe/flash:flapper_binaries",
]
+ if (enable_nacl) {
+ public_deps += [ "//components/nacl:nacl_helper" ]
+ }
if (current_cpu == "x86" || current_cpu == "x64") {
public_deps += [
"//third_party/widevine/cdm:widevinecdm",
« 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