| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 'target_name': 'clearkeycdm', | 103 'target_name': 'clearkeycdm', |
| 104 'type': 'shared_library', | 104 'type': 'shared_library', |
| 105 'defines': ['CDM_IMPLEMENTATION'], | 105 'defines': ['CDM_IMPLEMENTATION'], |
| 106 'dependencies': [ | 106 'dependencies': [ |
| 107 '<(DEPTH)/base/base.gyp:base', | 107 '<(DEPTH)/base/base.gyp:base', |
| 108 '<(DEPTH)/media/media.gyp:media' | 108 '<(DEPTH)/media/media.gyp:media', |
| 109 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 109 ], | 110 ], |
| 110 'sources': [ | 111 'sources': [ |
| 111 'crypto/ppapi/clear_key_cdm.cc', | 112 'crypto/ppapi/clear_key_cdm.cc', |
| 112 'crypto/ppapi/clear_key_cdm.h', | 113 'crypto/ppapi/clear_key_cdm.h', |
| 114 'crypto/ppapi/ffmpeg_cdm_video_decoder.cc', |
| 115 'crypto/ppapi/ffmpeg_cdm_video_decoder.h', |
| 116 'crypto/ppapi/ffmpeg_cdm_video_frame.cc', |
| 117 'crypto/ppapi/ffmpeg_cdm_video_frame.h', |
| 113 ], | 118 ], |
| 114 }, | 119 }, |
| 115 { | 120 { |
| 116 'target_name': 'clearkeycdmplugin', | 121 'target_name': 'clearkeycdmplugin', |
| 117 'type': 'none', | 122 'type': 'none', |
| 118 'dependencies': [ | 123 'dependencies': [ |
| 119 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', | 124 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', |
| 120 'clearkeycdm', | 125 'clearkeycdm', |
| 121 ], | 126 ], |
| 122 'sources': [ | 127 'sources': [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 144 # Not to strip important symbols by -Wl,-dead_strip. | 149 # Not to strip important symbols by -Wl,-dead_strip. |
| 145 '-Wl,-exported_symbol,_PPP_GetInterface', | 150 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 146 '-Wl,-exported_symbol,_PPP_InitializeModule', | 151 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 147 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 152 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 148 ]}, | 153 ]}, |
| 149 }], | 154 }], |
| 150 ], | 155 ], |
| 151 } | 156 } |
| 152 ], | 157 ], |
| 153 } | 158 } |
| OLD | NEW |