| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'webkit_media', | 8 'target_name': 'webkit_media', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ], | 99 ], |
| 100 }, | 100 }, |
| 101 { | 101 { |
| 102 'target_name': 'clearkeycdm', | 102 'target_name': 'clearkeycdm', |
| 103 'type': 'shared_library', | 103 'type': 'shared_library', |
| 104 'defines': ['CDM_IMPLEMENTATION'], | 104 'defines': ['CDM_IMPLEMENTATION'], |
| 105 'dependencies': [ | 105 'dependencies': [ |
| 106 '<(DEPTH)/base/base.gyp:base', | 106 '<(DEPTH)/base/base.gyp:base', |
| 107 '<(DEPTH)/media/media.gyp:media' | 107 '<(DEPTH)/media/media.gyp:media', |
| 108 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 108 ], | 109 ], |
| 109 'sources': [ | 110 'sources': [ |
| 110 'crypto/ppapi/clear_key_cdm.cc', | 111 'crypto/ppapi/clear_key_cdm.cc', |
| 111 'crypto/ppapi/clear_key_cdm.h', | 112 'crypto/ppapi/clear_key_cdm.h', |
| 113 'crypto/ppapi/ffmpeg_cdm_video_decoder.cc', |
| 114 'crypto/ppapi/ffmpeg_cdm_video_decoder.h', |
| 115 'crypto/ppapi/ffmpeg_cdm_video_frame.cc', |
| 116 'crypto/ppapi/ffmpeg_cdm_video_frame.h', |
| 112 ], | 117 ], |
| 113 }, | 118 }, |
| 114 { | 119 { |
| 115 'target_name': 'clearkeycdmplugin', | 120 'target_name': 'clearkeycdmplugin', |
| 116 'type': 'none', | 121 'type': 'none', |
| 117 'dependencies': [ | 122 'dependencies': [ |
| 118 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', | 123 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', |
| 119 'clearkeycdm', | 124 'clearkeycdm', |
| 120 ], | 125 ], |
| 121 'sources': [ | 126 'sources': [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 143 # Not to strip important symbols by -Wl,-dead_strip. | 148 # Not to strip important symbols by -Wl,-dead_strip. |
| 144 '-Wl,-exported_symbol,_PPP_GetInterface', | 149 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 145 '-Wl,-exported_symbol,_PPP_InitializeModule', | 150 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 146 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 151 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 147 ]}, | 152 ]}, |
| 148 }], | 153 }], |
| 149 ], | 154 ], |
| 150 } | 155 } |
| 151 ], | 156 ], |
| 152 } | 157 } |
| OLD | NEW |