| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 ], | 170 ], |
| 171 }, | 171 }, |
| 172 { | 172 { |
| 173 'target_name': 'ffmpeg_binaries', | 173 'target_name': 'ffmpeg_binaries', |
| 174 'type': 'none', | 174 'type': 'none', |
| 175 'msvs_guid': '4E4070E1-EFD9-4EF1-8634-3960956F6F10', | 175 'msvs_guid': '4E4070E1-EFD9-4EF1-8634-3960956F6F10', |
| 176 'conditions': [ | 176 'conditions': [ |
| 177 ['OS=="win"', { | 177 ['OS=="win"', { |
| 178 'variables': { | 178 'variables': { |
| 179 'source_files': [ | 179 'source_files': [ |
| 180 'binaries/avcodeec-52.dll', | 180 'binaries/avcodec-52.dll', |
| 181 'binaries/avformat-52.dll', | 181 'binaries/avformat-52.dll', |
| 182 'binaries/avutil-50.dll', | 182 'binaries/avutil-50.dll', |
| 183 'binaries/pthreadGC2.dll', | 183 'binaries/pthreadGC2.dll', |
| 184 ], | 184 ], |
| 185 'output_files': [ | 185 'output_files': [ |
| 186 '<(PRODUCT_DIR)/avcodec-52.dll', | 186 '<(PRODUCT_DIR)/avcodec-52.dll', |
| 187 '<(PRODUCT_DIR)/avformat-52.dll', | 187 '<(PRODUCT_DIR)/avformat-52.dll', |
| 188 '<(PRODUCT_DIR)/avutil-50.dll', | 188 '<(PRODUCT_DIR)/avutil-50.dll', |
| 189 '<(PRODUCT_DIR)/pthreadGC2.dll', | 189 '<(PRODUCT_DIR)/pthreadGC2.dll', |
| 190 ], | 190 ], |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 './copy_binaries.sh', | 233 './copy_binaries.sh', |
| 234 '<@(source_files)', | 234 '<@(source_files)', |
| 235 '<(PRODUCT_DIR)/' | 235 '<(PRODUCT_DIR)/' |
| 236 ], | 236 ], |
| 237 'message': 'Copying FFmpeg binaries...', | 237 'message': 'Copying FFmpeg binaries...', |
| 238 }, | 238 }, |
| 239 ], | 239 ], |
| 240 }, | 240 }, |
| 241 ], | 241 ], |
| 242 } | 242 } |
| OLD | NEW |