| 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 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1470 'audio/audio_input_controller_unittest.cc', | 1470 'audio/audio_input_controller_unittest.cc', |
| 1471 'audio/audio_input_unittest.cc', | 1471 'audio/audio_input_unittest.cc', |
| 1472 'audio/audio_manager_factory_unittest.cc', | 1472 'audio/audio_manager_factory_unittest.cc', |
| 1473 'audio/audio_manager_unittest.cc', | 1473 'audio/audio_manager_unittest.cc', |
| 1474 'audio/audio_output_controller_unittest.cc', | 1474 'audio/audio_output_controller_unittest.cc', |
| 1475 'audio/audio_output_device_unittest.cc', | 1475 'audio/audio_output_device_unittest.cc', |
| 1476 'audio/audio_output_proxy_unittest.cc', | 1476 'audio/audio_output_proxy_unittest.cc', |
| 1477 'audio/audio_parameters_unittest.cc', | 1477 'audio/audio_parameters_unittest.cc', |
| 1478 'audio/audio_power_monitor_unittest.cc', | 1478 'audio/audio_power_monitor_unittest.cc', |
| 1479 'audio/fake_audio_worker_unittest.cc', | 1479 'audio/fake_audio_worker_unittest.cc', |
| 1480 'audio/point_unittest.cc', |
| 1480 'audio/simple_sources_unittest.cc', | 1481 'audio/simple_sources_unittest.cc', |
| 1481 'audio/virtual_audio_input_stream_unittest.cc', | 1482 'audio/virtual_audio_input_stream_unittest.cc', |
| 1482 'audio/virtual_audio_output_stream_unittest.cc', | 1483 'audio/virtual_audio_output_stream_unittest.cc', |
| 1483 ], | 1484 ], |
| 1484 'conditions': [ | 1485 'conditions': [ |
| 1485 # TODO(wolenetz): Fix size_t to int truncations in win64. See | 1486 # TODO(wolenetz): Fix size_t to int truncations in win64. See |
| 1486 # http://crbug.com/171009 | 1487 # http://crbug.com/171009 |
| 1487 ['OS=="win" and target_arch=="x64"', { | 1488 ['OS=="win" and target_arch=="x64"', { |
| 1488 'msvs_disabled_warnings': [ 4267, ], | 1489 'msvs_disabled_warnings': [ 4267, ], |
| 1489 }], | 1490 }], |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1619 }, | 1620 }, |
| 1620 { | 1621 { |
| 1621 # Minimal target for NaCl and other renderer side media clients which | 1622 # Minimal target for NaCl and other renderer side media clients which |
| 1622 # only need to send audio data across the shared memory to the browser | 1623 # only need to send audio data across the shared memory to the browser |
| 1623 # process. | 1624 # process. |
| 1624 # GN version: //media:shared_memory_support | 1625 # GN version: //media:shared_memory_support |
| 1625 'target_name': 'shared_memory_support', | 1626 'target_name': 'shared_memory_support', |
| 1626 'type': '<(component)', | 1627 'type': '<(component)', |
| 1627 'dependencies': [ | 1628 'dependencies': [ |
| 1628 '../base/base.gyp:base', | 1629 '../base/base.gyp:base', |
| 1630 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 1629 ], | 1631 ], |
| 1630 'defines': [ | 1632 'defines': [ |
| 1631 'MEDIA_IMPLEMENTATION', | 1633 'MEDIA_IMPLEMENTATION', |
| 1632 ], | 1634 ], |
| 1633 'include_dirs': [ | 1635 'include_dirs': [ |
| 1634 '..', | 1636 '..', |
| 1635 ], | 1637 ], |
| 1636 'includes': [ | 1638 'includes': [ |
| 1637 'shared_memory_support.gypi', | 1639 'shared_memory_support.gypi', |
| 1638 ], | 1640 ], |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2056 'dependencies': [ | 2058 'dependencies': [ |
| 2057 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2059 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 2058 ], | 2060 ], |
| 2059 }], | 2061 }], |
| 2060 ], | 2062 ], |
| 2061 }, | 2063 }, |
| 2062 ], | 2064 ], |
| 2063 }], | 2065 }], |
| 2064 ], | 2066 ], |
| 2065 } | 2067 } |
| OLD | NEW |