| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 ], | 82 ], |
| 83 }], | 83 }], |
| 84 ], | 84 ], |
| 85 }, | 85 }, |
| 86 { | 86 { |
| 87 'target_name': 'clearkeycdm', | 87 'target_name': 'clearkeycdm', |
| 88 'type': 'shared_library', | 88 'type': 'shared_library', |
| 89 'defines': ['CDM_IMPLEMENTATION'], | 89 'defines': ['CDM_IMPLEMENTATION'], |
| 90 'dependencies': [ | 90 'dependencies': [ |
| 91 '<(DEPTH)/base/base.gyp:base', | 91 '<(DEPTH)/base/base.gyp:base', |
| 92 '<(DEPTH)/media/media.gyp:media' | 92 '<(DEPTH)/media/media.gyp:media', |
| 93 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 93 ], | 94 ], |
| 94 'sources': [ | 95 'sources': [ |
| 95 'crypto/ppapi/clear_key_cdm.cc', | 96 'crypto/ppapi/clear_key_cdm.cc', |
| 96 'crypto/ppapi/clear_key_cdm.h', | 97 'crypto/ppapi/clear_key_cdm.h', |
| 98 'crypto/decoders/ffmpeg_util.cc', |
| 99 'crypto/decoders/ffmpeg_util.h', |
| 100 'crypto/decoders/ffmpeg_video_decoder.cc', |
| 101 'crypto/decoders/ffmpeg_video_decoder.h', |
| 102 'crypto/decoders/video_decoder.cc', |
| 103 'crypto/decoders/video_decoder.h', |
| 97 ], | 104 ], |
| 98 }, | 105 }, |
| 99 { | 106 { |
| 100 'target_name': 'clearkeycdmplugin', | 107 'target_name': 'clearkeycdmplugin', |
| 101 'type': 'none', | 108 'type': 'none', |
| 102 'dependencies': [ | 109 'dependencies': [ |
| 103 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', | 110 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', |
| 104 'clearkeycdm', | 111 'clearkeycdm', |
| 105 ], | 112 ], |
| 106 'sources': [ | 113 'sources': [ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 126 # Not to strip important symbols by -Wl,-dead_strip. | 133 # Not to strip important symbols by -Wl,-dead_strip. |
| 127 '-Wl,-exported_symbol,_PPP_GetInterface', | 134 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 128 '-Wl,-exported_symbol,_PPP_InitializeModule', | 135 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 129 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 136 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 130 ]}, | 137 ]}, |
| 131 }], | 138 }], |
| 132 ], | 139 ], |
| 133 } | 140 } |
| 134 ], | 141 ], |
| 135 } | 142 } |
| OLD | NEW |