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

Unified Diff: content/common/BUILD.gn

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: comments addressed 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
« no previous file with comments | « content/browser/zygote_host/zygote_communication_linux.cc ('k') | content/common/media/cdm_host_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index 2686a330ab8dfa6399584bc845216184297e1885..05d35931b8759e710f0c0b94347c6170dfea4599 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.
« no previous file with comments | « content/browser/zygote_host/zygote_communication_linux.cc ('k') | content/common/media/cdm_host_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698