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

Unified Diff: media/BUILD.gn

Issue 1862543002: media: Fix gn deps on media/ targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: source_set Created 4 years, 8 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 | media/cdm/cdm_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/BUILD.gn
diff --git a/media/BUILD.gn b/media/BUILD.gn
index 3641f6a2fe4250748da71c2f5e01a49e22f67eca..60478c7faad241e4a1c9397382086bc1e49243bb 100644
--- a/media/BUILD.gn
+++ b/media/BUILD.gn
@@ -70,6 +70,12 @@ config("media_dependent_config") {
}
}
+source_set("cdm_api") {
+ sources = [
+ "cdm/api/content_decryption_module.h",
+ ]
+}
+
component("media") {
sources = [
"cdm/aes_decryptor.cc",
@@ -80,6 +86,7 @@ component("media") {
"cdm/cdm_allocator.h",
"cdm/cdm_helpers.cc",
"cdm/cdm_helpers.h",
+ "cdm/cdm_wrapper.h",
xhwang 2016/04/13 23:05:41 We should conditionally include these in "media",
jrummell 2016/04/13 23:16:32 Acknowledged.
"cdm/default_cdm_factory.cc",
"cdm/default_cdm_factory.h",
"cdm/json_web_key.cc",
@@ -227,7 +234,9 @@ component("media") {
cflags = []
libs = []
defines = []
- deps = []
+ deps = [
+ ":cdm_api",
+ ]
include_dirs = [ "." ]
if (media_use_ffmpeg) {
« no previous file with comments | « no previous file | media/cdm/cdm_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698