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

Unified Diff: media/media_cdm_adapter.gyp

Issue 2279593004: Delete gyp files from media/ (Closed)
Patch Set: Created 4 years, 4 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 | « media/media_cdm.gypi ('k') | media/media_gpu.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media_cdm_adapter.gyp
diff --git a/media/media_cdm_adapter.gyp b/media/media_cdm_adapter.gyp
deleted file mode 100644
index 4049b362ba21d9af4ddfbf7e96578b5dd120d06d..0000000000000000000000000000000000000000
--- a/media/media_cdm_adapter.gyp
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2013 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.
-
-# This file defines a common base target for all CDM adapter implementations.
-# We use 'direct_dependent_settings' to override target type and settings so
-# that all CDM adapter implementations have the correct type and settings
-# automatically.
-#
-# WARNING: Keep 'cdmadapter' target out of media.gyp. /build/all.gyp:All depends
-# directly on media.gyp:*. If 'cdmadapter' is defined in media.gyp, then
-# 'direct_dependent_settings' will be applied to 'All' target and bad
-# things happen, e.g. the type of 'All' target becomes a plugin on Mac.
-{
- 'conditions': [
- ['enable_pepper_cdms==1', {
- 'targets': [
- {
- # GN version: Use the template cdm_adapter in
- # //media/cdm/ppapi/ppapi_cdm_adapter.gni.
- 'target_name': 'cdmadapter',
- 'type': 'none',
- 'direct_dependent_settings': {
- 'defines': [
- 'USE_PPAPI_CDM_ADAPTER',
- ],
- 'sources': [
- 'cdm/api/content_decryption_module.h',
- 'cdm/cdm_helpers.cc',
- 'cdm/cdm_helpers.h',
- 'cdm/cdm_wrapper.h',
- 'cdm/ppapi/ppapi_cdm_adapter.cc',
- 'cdm/ppapi/ppapi_cdm_adapter.h',
- 'cdm/ppapi/ppapi_cdm_buffer.cc',
- 'cdm/ppapi/ppapi_cdm_buffer.h',
- 'cdm/ppapi/cdm_file_io_impl.cc',
- 'cdm/ppapi/cdm_file_io_impl.h',
- 'cdm/ppapi/cdm_logging.cc',
- 'cdm/ppapi/cdm_logging.h',
- 'cdm/ppapi/linked_ptr.h',
- 'cdm/supported_cdm_versions.cc',
- 'cdm/supported_cdm_versions.h',
- ],
- 'conditions': [
- ['os_posix == 1 and OS != "mac"', {
- 'cflags': ['-fvisibility=hidden'],
- 'type': 'loadable_module',
- # Allow the adapter to find the CDM in the same directory.
- 'ldflags': ['-Wl,-rpath=\$$ORIGIN'],
- }],
- ['OS == "win"', {
- 'type': 'shared_library',
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, ],
- }],
- ['OS == "mac"', {
- 'type': 'loadable_module',
- 'product_extension': 'plugin',
- 'xcode_settings': {
- 'OTHER_LDFLAGS': [
- # Not to strip important symbols by -Wl,-dead_strip.
- '-Wl,-exported_symbol,_PPP_GetInterface',
- '-Wl,-exported_symbol,_PPP_InitializeModule',
- '-Wl,-exported_symbol,_PPP_ShutdownModule'
- ],
- 'DYLIB_INSTALL_NAME_BASE': '@loader_path',
- },
- }],
- ],
- },
- },
- ],
- }],
- ],
-}
« no previous file with comments | « media/media_cdm.gypi ('k') | media/media_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698