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

Unified Diff: components/cdm.gypi

Issue 253593002: Componentize EncryptedMediaMessageFilter and rename it CdmMessageFilter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the empty library problem in macos build. Created 6 years, 7 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 | « chrome/renderer/media/chrome_key_systems.cc ('k') | components/cdm/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cdm.gypi
diff --git a/components/cdm.gypi b/components/cdm.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..14f9234180b5d041a86d818400b144b4609f0ffa
--- /dev/null
+++ b/components/cdm.gypi
@@ -0,0 +1,62 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'cdm_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../ipc/ipc.gyp:ipc',
+ ],
+ 'sources': [
+ 'cdm/common/cdm_message_generator.cc',
+ 'cdm/common/cdm_message_generator.h',
+ 'cdm/common/cdm_messages_android.h',
+ ],
+ },
+ {
+ 'target_name': 'cdm_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'cdm_common',
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../content/content.gyp:content_renderer',
+ '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
+ ],
+ 'include_dirs': [
+ # Needed by widevine_key_systems.cc.
+ '<(SHARED_INTERMEDIATE_DIR)',
+ ],
+ 'sources': [
+ 'cdm/renderer/widevine_key_systems.cc',
+ 'cdm/renderer/widevine_key_systems.h',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['OS == "android"', {
+ 'targets': [
+ {
+ 'target_name': 'cdm_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'cdm_common',
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../content/content.gyp:content_common',
+ '../media/media.gyp:media',
+ ],
+ 'sources': [
+ 'cdm/browser/cdm_message_filter_android.cc',
+ 'cdm/browser/cdm_message_filter_android.h',
+ ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « chrome/renderer/media/chrome_key_systems.cc ('k') | components/cdm/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698