Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: content/content_tests.gypi

Issue 825843002: Add JPEG decoder for VAAPI JPEG decode acceleration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-vaapi-jpeg-parser
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/content_tests.gypi
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index 00630f845fd4effd6e5d990878ba59a3b805bd17..a3d8e7b8a57d5fcd352a337fbf9c0ae268269980 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -1653,6 +1653,35 @@
}],
],
},
+ {
+ 'target_name': 'vaapi_jpeg_decoder_unittest',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ 'content.gyp:content_common',
+ '../base/base.gyp:base',
+ '../media/media.gyp:media',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'common/gpu/media/vaapi_jpeg_decoder.h',
+ '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.
+ '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
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/libva',
+ ],
+ 'conditions': [
+ ['use_x11==1', {
+ 'dependencies': [
+ '../build/linux/system.gyp:x11',
+ ]
+ }, {
+ 'dependencies': [
+ '../build/linux/system.gyp:libdrm',
+ ]
+ }],
+ ],
+ }
]
}],
['chromeos==1', {
« content/common/gpu/media/vaapi_wrapper.cc ('K') | « content/common/gpu/media/vaapi_wrapper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698