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

Unified Diff: chrome/BUILD.gn

Issue 2136983002: Bundle fake Widevine component manifest for stub CDM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use commas consistently Created 4 years, 5 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/chrome_dll_bundle.gypi » ('j') | chrome/chrome_dll_bundle.gypi » ('J')
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 1c26c3f29012af6f22a4709c98c11ea97376a6b7..1efd38400ddac654410cfcf7aaa3164017637ad9 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -14,6 +14,7 @@ import("//build/config/win/manifest.gni")
import("//chrome/chrome_repack_locales.gni")
import("//chrome/common/features.gni")
import("//chrome/version.gni")
+import("//third_party/widevine/cdm/widevine.gni")
import("//ui/base/ui_features.gni")
if (is_android) {
@@ -795,21 +796,45 @@ if (is_win) {
"//third_party/adobe/flash:flapper_binaries",
]
}
+ } else {
+ group("flash_player_plugin") {
+ }
+ }
+ if (enable_widevine) {
ddorwin 2016/07/18 18:35:17 enable_widevine does not appear to be set for Chro
wdzierzanowski 2016/07/19 11:35:17 Done.
+ # The Widevine CDM and manifest are either the actual Widevine CDM and
+ # manifest or stubs used for testing only. The choice is made within the
+ # corresponding Widevine targets based on branding.
bundle_data("widevine_cdm_library_binaries") {
sources = [
- "$root_out_dir/$widevine_cdm_path/libwidevinecdm.dylib",
+ "$root_out_dir/libwidevinecdm.dylib",
"$root_out_dir/$widevine_cdm_path/widevinecdmadapter.plugin",
]
outputs = [
"{{bundle_root_dir}}/Libraries/$widevine_cdm_path/{{source_file_part}}",
]
public_deps = [
- "//third_party/widevine/cdm:widevinecdm",
+ # Need this intermediate dependency because "widevinecdm" is a
ddorwin 2016/07/18 18:35:17 Does this only apply to !is_chrome_branded? It ap
wdzierzanowski 2016/07/19 11:35:17 The intermediate dependency is not required for !i
+ # shared_library if !is_chrome_branded, and then depending on
+ # "widevinecdm" directly would cause it to be linked into the Chromium
+ # Framework, which we don't want.
+ ":widevine_cdm_library_copy",
"//third_party/widevine/cdm:widevinecdmadapter",
]
}
+ copy("widevine_cdm_library_copy") {
+ sources = [
+ "$root_out_dir/$widevine_cdm_path/libwidevinecdm.dylib",
+ ]
+ outputs = [
+ "$root_out_dir/{{source_file_part}}",
+ ]
+ deps = [
+ "//third_party/widevine/cdm:widevinecdm",
+ ]
+ }
+
bundle_data("widevine_cdm_library_manifest") {
sources = [
"$root_out_dir/WidevineCdm/manifest.json",
@@ -821,13 +846,10 @@ if (is_win) {
"//third_party/widevine/cdm:widevine_cdm_manifest",
]
}
- } else {
- group("flash_player_plugin") {
- }
}
group("widevine_cdm_library") {
- if (is_chrome_branded) {
+ if (enable_widevine) {
deps = [
":widevine_cdm_library_binaries",
":widevine_cdm_library_manifest",
« no previous file with comments | « no previous file | chrome/chrome_dll_bundle.gypi » ('j') | chrome/chrome_dll_bundle.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698