| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ], | 96 ], |
| 97 'direct_dependent_settings': { | 97 'direct_dependent_settings': { |
| 98 'include_dirs': [ | 98 'include_dirs': [ |
| 99 '..', | 99 '..', |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 'conditions': [ | 102 'conditions': [ |
| 103 ['OS =="linux"', { | 103 ['OS =="linux"', { |
| 104 'sources!': [ | 104 'sources!': [ |
| 105 'filters/ffmpeg_audio_decoder.cc', | 105 'filters/ffmpeg_audio_decoder.cc', |
| 106 'filters/ffmpeg_demuxer.cc', |
| 107 'filters/ffmpeg_demuxer.h', |
| 106 'filters/ffmpeg_glue.cc', | 108 'filters/ffmpeg_glue.cc', |
| 107 'filters/ffmpeg_video_decoder.cc', | 109 'filters/ffmpeg_video_decoder.cc', |
| 108 ], | 110 ], |
| 109 'sources/': [ ['exclude', '_(mac|win)\\.cc$'], | 111 'sources/': [ ['exclude', '_(mac|win)\\.cc$'], |
| 110 ['exclude', '\\.mm?$' ] ], | 112 ['exclude', '\\.mm?$' ] ], |
| 111 }], | 113 }], |
| 112 ['OS =="mac"', { | 114 ['OS =="mac"', { |
| 113 'link_settings': { | 115 'link_settings': { |
| 114 'libraries': [ | 116 'libraries': [ |
| 115 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', | 117 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 203 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 202 ], | 204 ], |
| 203 'sources': [ | 205 'sources': [ |
| 204 'bench/bench.cc', | 206 'bench/bench.cc', |
| 205 ], | 207 ], |
| 206 }, | 208 }, |
| 207 ], | 209 ], |
| 208 }], | 210 }], |
| 209 ], | 211 ], |
| 210 } | 212 } |
| OLD | NEW |