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 'variables': { | 6 'variables': { |
7 'use_v4lplugin%': 0, | 7 'use_v4lplugin%': 0, |
8 'layouttest_support_content_sources': [ | 8 'layouttest_support_content_sources': [ |
9 'public/test/layouttest_support.h', | 9 'public/test/layouttest_support.h', |
10 'public/test/nested_message_pump_android.cc', | 10 'public/test/nested_message_pump_android.cc', |
(...skipping 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1646 'dependencies': [ | 1646 'dependencies': [ |
1647 '../build/linux/system.gyp:x11', | 1647 '../build/linux/system.gyp:x11', |
1648 ] | 1648 ] |
1649 }, { | 1649 }, { |
1650 'dependencies': [ | 1650 'dependencies': [ |
1651 '../build/linux/system.gyp:libdrm', | 1651 '../build/linux/system.gyp:libdrm', |
1652 ] | 1652 ] |
1653 }], | 1653 }], |
1654 ], | 1654 ], |
1655 }, | 1655 }, |
1656 { | |
1657 'target_name': 'vaapi_jpeg_decoder_unittest', | |
1658 'type': '<(gtest_target_type)', | |
1659 'dependencies': [ | |
1660 'content.gyp:content_common', | |
1661 '../base/base.gyp:base', | |
1662 '../media/media.gyp:media', | |
1663 '../testing/gtest.gyp:gtest', | |
1664 ], | |
1665 'sources': [ | |
1666 'common/gpu/media/vaapi_jpeg_decoder.h', | |
1667 'common/gpu/media/vaapi_jpeg_decoder.cc', | |
wuchengli
2015/01/20 07:55:54
This should be moved to content/content_common.gyp
kcwu
2015/01/21 12:23:48
Done.
| |
1668 'common/gpu/media/vaapi_jpeg_decoder_unittest.cc', | |
wuchengli
2015/01/20 07:55:54
GN should also have this.
kcwu
2015/01/21 12:23:48
This followed vaapi_h264_decoder_unittest, which i
| |
1669 ], | |
1670 'include_dirs': [ | |
1671 '<(DEPTH)/third_party/libva', | |
1672 ], | |
1673 'conditions': [ | |
1674 ['use_x11==1', { | |
1675 'dependencies': [ | |
1676 '../build/linux/system.gyp:x11', | |
1677 ] | |
1678 }, { | |
1679 'dependencies': [ | |
1680 '../build/linux/system.gyp:libdrm', | |
1681 ] | |
1682 }], | |
1683 ], | |
1684 } | |
1656 ] | 1685 ] |
1657 }], | 1686 }], |
1658 ['chromeos==1', { | 1687 ['chromeos==1', { |
1659 'targets': [ | 1688 'targets': [ |
1660 { | 1689 { |
1661 'target_name': 'video_encode_accelerator_unittest', | 1690 'target_name': 'video_encode_accelerator_unittest', |
1662 'type': 'executable', | 1691 'type': 'executable', |
1663 'dependencies': [ | 1692 'dependencies': [ |
1664 '../base/base.gyp:base', | 1693 '../base/base.gyp:base', |
1665 '../media/media.gyp:media', | 1694 '../media/media.gyp:media', |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2102 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 2131 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
2103 }, | 2132 }, |
2104 ], | 2133 ], |
2105 }], | 2134 }], |
2106 ], | 2135 ], |
2107 }, | 2136 }, |
2108 ], | 2137 ], |
2109 }], | 2138 }], |
2110 ], | 2139 ], |
2111 } | 2140 } |
OLD | NEW |