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

Unified Diff: content/common/BUILD.gn

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: Polished! Created 3 years, 11 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: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index cd2b8dc2c83ff082f46ad68a5451a96e3df80c2a..cd231585a7589645918928ef0500670e733f18c8 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -533,6 +533,23 @@ source_set("common") {
"external_ipc_dumper.h",
]
}
+
+ if (enable_pepper_cdms) {
+ sources += [
+ "media/cdm_host_file.cc",
+ "media/cdm_host_file.h",
+ "media/cdm_host_files.cc",
+ "media/cdm_host_files.h",
+ ]
+ deps += [
+ "//media:cdm_paths",
+
+ # Needed for finding CDM path from CDM adapter path.
+ # TODO(xhwang): Remove this dependency when CDM adapter is deprecated.
+ # See http://crbug.com/403462
+ "//third_party/widevine/cdm:headers",
+ ]
+ }
}
# See comment at the top of //content/BUILD.gn for how this works.

Powered by Google App Engine
This is Rietveld 408576698