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

Unified Diff: chrome/BUILD.gn

Issue 2251923002: Stop including flash in the archive on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also stop copying the bundled flash into the build dir Created 4 years, 4 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 | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index ec5894a95050ef687dd908f8cad511ac506bc6bc..4ca65c1f39584c00cf0e629b9fb5d64ab17e413e 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -257,14 +257,14 @@ if (!is_android && !is_mac) {
":packed_extra_resources",
":packed_resources",
]
- deps += [
- "//components/startup_metric_utils/browser:lib",
+ deps += [ "//components/startup_metric_utils/browser:lib" ]
- # Precompiled plugins that need to get copied to the output directory.
- # On Mac, internal plugins go inside the framework, so these
- # dependencies are on chrome.dll.
- "//third_party/adobe/flash:flapper_binaries",
- ]
+ # Precompiled plugins that need to get copied to the output directory.
+ # On Mac, internal plugins go inside the framework, so these
+ # dependencies are on chrome.dll. On Windows, these are not bundled.
Nico 2016/08/23 17:19:47 Aren't they not bundled now on Mac as well?
+ if (!is_win) {
+ deps += [ "//third_party/adobe/flash:flapper_binaries" ]
+ }
data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ]
« no previous file with comments | « no previous file | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698