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 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1306 '../ui/gfx/gfx.gyp:gfx_geometry', | 1306 '../ui/gfx/gfx.gyp:gfx_geometry', |
1307 '../ui/ui.gyp:ui', | 1307 '../ui/ui.gyp:ui', |
1308 ], | 1308 ], |
1309 'sources': [ | 1309 'sources': [ |
1310 'common/gpu/media/video_accelerator_unittest_helpers.h', | 1310 'common/gpu/media/video_accelerator_unittest_helpers.h', |
1311 'common/gpu/media/video_encode_accelerator_unittest.cc', | 1311 'common/gpu/media/video_encode_accelerator_unittest.cc', |
1312 ], | 1312 ], |
1313 }, | 1313 }, |
1314 ] | 1314 ] |
1315 }], | 1315 }], |
1316 ['chromeos == 1 or OS == "linux"', { | |
1317 'targets': [ | |
1318 { | |
1319 'target_name': 'h264_parser_unittest', | |
1320 'type': 'executable', | |
1321 'dependencies': [ | |
1322 'content.gyp:content_common', | |
1323 '../base/base.gyp:base', | |
1324 '../testing/gtest.gyp:gtest', | |
1325 ], | |
1326 'sources': [ | |
1327 'common/gpu/media/h264_bit_reader_unittest.cc', | |
1328 'common/gpu/media/h264_parser_unittest.cc', | |
1329 ], | |
1330 'conditions': [ | |
1331 ['linux_use_tcmalloc==1', { | |
1332 'dependencies': [ | |
1333 '../base/allocator/allocator.gyp:allocator', | |
1334 ], | |
1335 }], | |
1336 ], | |
1337 } | |
1338 ], | |
1339 }], | |
1340 # Special target to wrap a gtest_target_type==shared_library | 1316 # Special target to wrap a gtest_target_type==shared_library |
1341 # content_unittests into an android apk for execution. | 1317 # content_unittests into an android apk for execution. |
1342 # See base.gyp for TODO(jrg)s about this strategy. | 1318 # See base.gyp for TODO(jrg)s about this strategy. |
1343 ['OS == "android" and gtest_target_type == "shared_library"', { | 1319 ['OS == "android" and gtest_target_type == "shared_library"', { |
1344 'targets': [ | 1320 'targets': [ |
1345 { | 1321 { |
1346 'target_name': 'content_gl_tests_apk', | 1322 'target_name': 'content_gl_tests_apk', |
1347 'type': 'none', | 1323 'type': 'none', |
1348 'dependencies': [ | 1324 'dependencies': [ |
1349 'content_gl_tests', | 1325 'content_gl_tests', |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1642 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1618 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1643 }, | 1619 }, |
1644 ], | 1620 ], |
1645 }], | 1621 }], |
1646 ], | 1622 ], |
1647 }, | 1623 }, |
1648 ], | 1624 ], |
1649 }], | 1625 }], |
1650 ], | 1626 ], |
1651 } | 1627 } |
OLD | NEW |