| 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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1386 ['OS=="android"', { | 1386 ['OS=="android"', { |
| 1387 'dependencies': [ | 1387 'dependencies': [ |
| 1388 '../testing/android/native_test.gyp:native_test_native_code', | 1388 '../testing/android/native_test.gyp:native_test_native_code', |
| 1389 'player_android', | 1389 'player_android', |
| 1390 ], | 1390 ], |
| 1391 'sources!': [ | 1391 'sources!': [ |
| 1392 'filters/decrypting_audio_decoder_unittest.cc', | 1392 'filters/decrypting_audio_decoder_unittest.cc', |
| 1393 'filters/decrypting_video_decoder_unittest.cc', | 1393 'filters/decrypting_video_decoder_unittest.cc', |
| 1394 ], | 1394 ], |
| 1395 }], | 1395 }], |
| 1396 # If ExternalClearKey is built, we can test CdmAdapter. |
| 1397 ['enable_pepper_cdms == 1', { |
| 1398 'dependencies': [ |
| 1399 'clearkeycdm', |
| 1400 ], |
| 1401 'sources': [ |
| 1402 'cdm/cdm_adapter_unittest.cc', |
| 1403 ], |
| 1404 }], |
| 1396 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { | 1405 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { |
| 1397 'sources': [ | 1406 'sources': [ |
| 1398 'filters/h264_bitstream_buffer_unittest.cc', | 1407 'filters/h264_bitstream_buffer_unittest.cc', |
| 1399 ], | 1408 ], |
| 1400 }], | 1409 }], |
| 1401 ['target_arch=="ia32" or target_arch=="x64"', { | 1410 ['target_arch=="ia32" or target_arch=="x64"', { |
| 1402 'sources': [ | 1411 'sources': [ |
| 1403 'base/simd/convert_rgb_to_yuv_unittest.cc', | 1412 'base/simd/convert_rgb_to_yuv_unittest.cc', |
| 1404 ], | 1413 ], |
| 1405 }], | 1414 }], |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2117 'dependencies': [ | 2126 'dependencies': [ |
| 2118 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2127 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 2119 ], | 2128 ], |
| 2120 }], | 2129 }], |
| 2121 ], | 2130 ], |
| 2122 }, | 2131 }, |
| 2123 ], | 2132 ], |
| 2124 }], | 2133 }], |
| 2125 ], | 2134 ], |
| 2126 } | 2135 } |
| OLD | NEW |