| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Override to dynamically link the cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
| 9 'use_cras%': 0, | 9 'use_cras%': 0, |
| 10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ['use_cras==1', { | 28 ['use_cras==1', { |
| 29 'use_pulseaudio%': 0, | 29 'use_pulseaudio%': 0, |
| 30 }, { | 30 }, { |
| 31 'use_pulseaudio%': 1, | 31 'use_pulseaudio%': 1, |
| 32 }], | 32 }], |
| 33 ], | 33 ], |
| 34 }, { | 34 }, { |
| 35 'use_alsa%': 0, | 35 'use_alsa%': 0, |
| 36 'use_pulseaudio%': 0, | 36 'use_pulseaudio%': 0, |
| 37 }], | 37 }], |
| 38 ['sysroot!=""', { | |
| 39 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_
arch)" "<(system_libdir)"', | |
| 40 }, { | |
| 41 'pkg-config': 'pkg-config' | |
| 42 }], | |
| 43 # low memory buffer is used in non-Android based chromecast build due to h
ardware limitation. | 38 # low memory buffer is used in non-Android based chromecast build due to h
ardware limitation. |
| 44 ['chromecast==1 and OS!="android"', { | 39 ['chromecast==1 and OS!="android"', { |
| 45 'use_low_memory_buffer%': 1, | 40 'use_low_memory_buffer%': 1, |
| 46 }, { | 41 }, { |
| 47 'use_low_memory_buffer%': 0, | 42 'use_low_memory_buffer%': 0, |
| 48 }], | 43 }], |
| 49 ], | 44 ], |
| 50 }, | 45 }, |
| 51 'includes': [ | 46 'includes': [ |
| 52 'media_cdm.gypi', | 47 'media_cdm.gypi', |
| (...skipping 1918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1971 'dependencies': [ | 1966 'dependencies': [ |
| 1972 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1967 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1973 ], | 1968 ], |
| 1974 }], | 1969 }], |
| 1975 ], | 1970 ], |
| 1976 }, | 1971 }, |
| 1977 ], | 1972 ], |
| 1978 }], | 1973 }], |
| 1979 ], | 1974 ], |
| 1980 } | 1975 } |
| OLD | NEW |