| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 'dependencies': [ | 553 'dependencies': [ |
| 554 'media_android_jni_headers', | 554 'media_android_jni_headers', |
| 555 'player_android', | 555 'player_android', |
| 556 'video_capture_android_jni_headers', | 556 'video_capture_android_jni_headers', |
| 557 ], | 557 ], |
| 558 'sources': [ | 558 'sources': [ |
| 559 'base/media.cc', | 559 'base/media.cc', |
| 560 'base/media.h', | 560 'base/media.h', |
| 561 'base/media_stub.cc', | 561 'base/media_stub.cc', |
| 562 ], | 562 ], |
| 563 'sources!': [ |
| 564 'filters/opus_audio_decoder.cc', |
| 565 'filters/opus_audio_decoder.h', |
| 566 ], |
| 563 'conditions': [ | 567 'conditions': [ |
| 564 ['android_webview_build==0', { | 568 ['android_webview_build==0', { |
| 565 'dependencies': [ | 569 'dependencies': [ |
| 566 'media_java', | 570 'media_java', |
| 567 ], | 571 ], |
| 568 }], | 572 }], |
| 569 ], | 573 ], |
| 570 'defines': [ | 574 'defines': [ |
| 571 'DISABLE_USER_INPUT_MONITOR', | 575 'DISABLE_USER_INPUT_MONITOR', |
| 572 ], | 576 ], |
| (...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 ], | 1640 ], |
| 1637 }], | 1641 }], |
| 1638 ], | 1642 ], |
| 1639 }], | 1643 }], |
| 1640 ], | 1644 ], |
| 1641 }, | 1645 }, |
| 1642 ], | 1646 ], |
| 1643 }], | 1647 }], |
| 1644 ], | 1648 ], |
| 1645 } | 1649 } |
| OLD | NEW |