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 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1252 'include_dirs': [ | 1252 'include_dirs': [ |
1253 '<(DEPTH)/third_party/libva', | 1253 '<(DEPTH)/third_party/libva', |
1254 ], | 1254 ], |
1255 }], | 1255 }], |
1256 ], | 1256 ], |
1257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1258 'msvs_disabled_warnings': [ 4267, ], | 1258 'msvs_disabled_warnings': [ 4267, ], |
1259 }, | 1259 }, |
1260 ] | 1260 ] |
1261 }], | 1261 }], |
1262 ['(chromeos==1 or OS=="linux") and target_arch != "arm"', { | |
Pawel Osciak
2013/11/29 04:25:13
I think we don't want to have linux here. Also we
chihchung
2013/11/29 14:06:30
Done.
| |
1263 'targets': [ | |
1264 { | |
1265 'target_name': 'vaapi_h264_decoder_unittest', | |
1266 'type': '<(gtest_target_type)', | |
1267 'dependencies': [ | |
1268 'content.gyp:content', | |
1269 '../base/base.gyp:base', | |
1270 '../media/media.gyp:media', | |
1271 '../testing/gtest.gyp:gtest', | |
1272 ], | |
1273 'sources': [ | |
1274 'common/gpu/media/vaapi_h264_decoder_unittest.cc', | |
1275 ], | |
1276 'include_dirs': [ | |
1277 '<(DEPTH)/third_party/libva', | |
Pawel Osciak
2013/11/29 04:25:13
I think this should already be included and you do
chihchung
2013/11/29 14:06:30
Done.
| |
1278 ], | |
1279 }, | |
1280 ] | |
1281 }], | |
1262 ['chromeos==1 and target_arch == "arm"', { | 1282 ['chromeos==1 and target_arch == "arm"', { |
1263 'targets': [ | 1283 'targets': [ |
1264 { | 1284 { |
1265 'target_name': 'video_encode_accelerator_unittest', | 1285 'target_name': 'video_encode_accelerator_unittest', |
1266 'type': 'executable', | 1286 'type': 'executable', |
1267 'dependencies': [ | 1287 'dependencies': [ |
1268 'content.gyp:content', | 1288 'content.gyp:content', |
1269 '../base/base.gyp:base', | 1289 '../base/base.gyp:base', |
1270 '../testing/gtest.gyp:gtest', | 1290 '../testing/gtest.gyp:gtest', |
1271 '../media/media.gyp:media', | 1291 '../media/media.gyp:media', |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1619 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1639 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1620 }, | 1640 }, |
1621 ], | 1641 ], |
1622 }], | 1642 }], |
1623 ], | 1643 ], |
1624 }, | 1644 }, |
1625 ], | 1645 ], |
1626 }], | 1646 }], |
1627 ], | 1647 ], |
1628 } | 1648 } |
OLD | NEW |