OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 'dependencies': [ | 1312 'dependencies': [ |
1313 '../build/linux/system.gyp:x11', # Used by rendering_helper.c
c | 1313 '../build/linux/system.gyp:x11', # Used by rendering_helper.c
c |
1314 ], | 1314 ], |
1315 }], | 1315 }], |
1316 ], | 1316 ], |
1317 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1317 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1318 'msvs_disabled_warnings': [ 4267, ], | 1318 'msvs_disabled_warnings': [ 4267, ], |
1319 }, | 1319 }, |
1320 ] | 1320 ] |
1321 }], | 1321 }], |
| 1322 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { |
| 1323 'targets': [ |
| 1324 { |
| 1325 'target_name': 'vaapi_h264_decoder_unittest', |
| 1326 'type': '<(gtest_target_type)', |
| 1327 'dependencies': [ |
| 1328 'content.gyp:content_common', |
| 1329 '../base/base.gyp:base', |
| 1330 '../media/media.gyp:media', |
| 1331 '../testing/gtest.gyp:gtest', |
| 1332 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 1333 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 1334 ], |
| 1335 'sources': [ |
| 1336 'common/gpu/media/vaapi_h264_decoder_unittest.cc', |
| 1337 ], |
| 1338 'include_dirs': [ |
| 1339 '<(DEPTH)/third_party/libva', |
| 1340 ], |
| 1341 'link_settings': { |
| 1342 'libraries': [ |
| 1343 '-lX11', |
| 1344 ], |
| 1345 }, |
| 1346 }, |
| 1347 ] |
| 1348 }], |
1322 ['chromeos==1 and target_arch == "arm"', { | 1349 ['chromeos==1 and target_arch == "arm"', { |
1323 'targets': [ | 1350 'targets': [ |
1324 { | 1351 { |
1325 'target_name': 'video_encode_accelerator_unittest', | 1352 'target_name': 'video_encode_accelerator_unittest', |
1326 'type': 'executable', | 1353 'type': 'executable', |
1327 'dependencies': [ | 1354 'dependencies': [ |
1328 'content.gyp:content', | 1355 'content.gyp:content', |
1329 '../base/base.gyp:base', | 1356 '../base/base.gyp:base', |
1330 '../testing/gtest.gyp:gtest', | 1357 '../testing/gtest.gyp:gtest', |
1331 '../media/media.gyp:media', | 1358 '../media/media.gyp:media', |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1648 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1675 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1649 }, | 1676 }, |
1650 ], | 1677 ], |
1651 }], | 1678 }], |
1652 ], | 1679 ], |
1653 }, | 1680 }, |
1654 ], | 1681 ], |
1655 }], | 1682 }], |
1656 ], | 1683 ], |
1657 } | 1684 } |
OLD | NEW |