| 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': [ | |
| 7 '../../build/common.gypi', | |
| 8 ], | |
| 9 'target_defaults': { | 6 'target_defaults': { |
| 10 'conditions': [ | 7 'conditions': [ |
| 11 ['OS!="linux" and OS!="freebsd"', {'sources/': [['exclude', '/linux/']]}], | 8 ['OS!="linux" and OS!="freebsd"', {'sources/': [['exclude', '/linux/']]}], |
| 12 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}], | 9 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}], |
| 13 ['OS!="win"', {'sources/': [['exclude', '/win/']]}], | 10 ['OS!="win"', {'sources/': [['exclude', '/win/']]}], |
| 14 ], | 11 ], |
| 15 }, | 12 }, |
| 16 'variables': { | 13 'variables': { |
| 17 # Allow overridding the selection of which ffmpeg binaries to copy via an | 14 # Allow overridding the selection of which ffmpeg binaries to copy via an |
| 18 # environment variable. Affects the ffmpeg_binaries target. | 15 # environment variable. Affects the ffmpeg_binaries target. |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 { | 228 { |
| 232 'destination': '<(PRODUCT_DIR)/', | 229 'destination': '<(PRODUCT_DIR)/', |
| 233 'files': [ | 230 'files': [ |
| 234 '<@(source_files)', | 231 '<@(source_files)', |
| 235 ] | 232 ] |
| 236 }, | 233 }, |
| 237 ], | 234 ], |
| 238 }, | 235 }, |
| 239 ], | 236 ], |
| 240 } | 237 } |
| OLD | NEW |