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" ] |