| 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 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['OS == "android" or OS == "ios"', { | 8 ['OS == "android" or OS == "ios"', { |
| 9 # Android and iOS don't use ffmpeg. | 9 # Android and iOS don't use ffmpeg. |
| 10 'use_ffmpeg%': 0, | 10 'use_ffmpeg%': 0, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'preload.h', | 73 'preload.h', |
| 74 'simple_video_frame_provider.cc', | 74 'simple_video_frame_provider.cc', |
| 75 'simple_video_frame_provider.h', | 75 'simple_video_frame_provider.h', |
| 76 'video_frame_provider.cc', | 76 'video_frame_provider.cc', |
| 77 'video_frame_provider.h', | 77 'video_frame_provider.h', |
| 78 'webmediaplayer_delegate.h', | 78 'webmediaplayer_delegate.h', |
| 79 'webmediaplayer_impl.cc', | 79 'webmediaplayer_impl.cc', |
| 80 'webmediaplayer_impl.h', | 80 'webmediaplayer_impl.h', |
| 81 'webmediaplayer_ms.cc', | 81 'webmediaplayer_ms.cc', |
| 82 'webmediaplayer_ms.h', | 82 'webmediaplayer_ms.h', |
| 83 'webmediaplayer_params.cc', |
| 84 'webmediaplayer_params.h', |
| 83 'webmediaplayer_proxy.cc', | 85 'webmediaplayer_proxy.cc', |
| 84 'webmediaplayer_proxy.h', | 86 'webmediaplayer_proxy.h', |
| 85 'webmediaplayer_util.cc', | 87 'webmediaplayer_util.cc', |
| 86 'webmediaplayer_util.h', | 88 'webmediaplayer_util.h', |
| 87 'webvideoframe_impl.cc', | 89 'webvideoframe_impl.cc', |
| 88 'webvideoframe_impl.h', | 90 'webvideoframe_impl.h', |
| 89 ], | 91 ], |
| 90 'conditions': [ | 92 'conditions': [ |
| 91 ['inside_chromium_build == 0', { | 93 ['inside_chromium_build == 0', { |
| 92 'dependencies': [ | 94 'dependencies': [ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 # Not to strip important symbols by -Wl,-dead_strip. | 209 # Not to strip important symbols by -Wl,-dead_strip. |
| 208 '-Wl,-exported_symbol,_PPP_GetInterface', | 210 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 209 '-Wl,-exported_symbol,_PPP_InitializeModule', | 211 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 210 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 212 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 211 ]}, | 213 ]}, |
| 212 }], | 214 }], |
| 213 ], | 215 ], |
| 214 } | 216 } |
| 215 ], | 217 ], |
| 216 } | 218 } |
| OLD | NEW |