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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 270213004: Implement Pepper PPB_VideoDecoder interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DCHECK that shm bufffers are free after Flush/Reset. Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'ppapi_tests', 8 'target_name': 'ppapi_tests',
9 'type': 'loadable_module', 9 'type': 'loadable_module',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'proxy/plugin_resource_tracker_unittest.cc', 169 'proxy/plugin_resource_tracker_unittest.cc',
170 'proxy/plugin_var_tracker_unittest.cc', 170 'proxy/plugin_var_tracker_unittest.cc',
171 'proxy/ppb_var_unittest.cc', 171 'proxy/ppb_var_unittest.cc',
172 'proxy/ppp_instance_private_proxy_unittest.cc', 172 'proxy/ppp_instance_private_proxy_unittest.cc',
173 'proxy/ppp_instance_proxy_unittest.cc', 173 'proxy/ppp_instance_proxy_unittest.cc',
174 'proxy/ppp_messaging_proxy_unittest.cc', 174 'proxy/ppp_messaging_proxy_unittest.cc',
175 'proxy/printing_resource_unittest.cc', 175 'proxy/printing_resource_unittest.cc',
176 'proxy/raw_var_data_unittest.cc', 176 'proxy/raw_var_data_unittest.cc',
177 'proxy/serialized_var_unittest.cc', 177 'proxy/serialized_var_unittest.cc',
178 'proxy/talk_resource_unittest.cc', 178 'proxy/talk_resource_unittest.cc',
179 'proxy/video_decoder_resource_unittest.cc',
179 'proxy/websocket_resource_unittest.cc', 180 'proxy/websocket_resource_unittest.cc',
180 'shared_impl/media_stream_buffer_manager_unittest.cc', 181 'shared_impl/media_stream_buffer_manager_unittest.cc',
181 'shared_impl/media_stream_video_track_shared_unittest.cc', 182 'shared_impl/media_stream_video_track_shared_unittest.cc',
182 'shared_impl/proxy_lock_unittest.cc', 183 'shared_impl/proxy_lock_unittest.cc',
183 'shared_impl/resource_tracker_unittest.cc', 184 'shared_impl/resource_tracker_unittest.cc',
184 'shared_impl/thread_aware_callback_unittest.cc', 185 'shared_impl/thread_aware_callback_unittest.cc',
185 'shared_impl/time_conversion_unittest.cc', 186 'shared_impl/time_conversion_unittest.cc',
186 'shared_impl/tracked_callback_unittest.cc', 187 'shared_impl/tracked_callback_unittest.cc',
187 'shared_impl/var_tracker_unittest.cc', 188 'shared_impl/var_tracker_unittest.cc',
188 'shared_impl/var_value_conversions_unittest.cc', 189 'shared_impl/var_value_conversions_unittest.cc',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 'target_name': 'ppapi_example_video_decode', 445 'target_name': 'ppapi_example_video_decode',
445 'dependencies': [ 446 'dependencies': [
446 'ppapi_example_skeleton', 447 'ppapi_example_skeleton',
447 'ppapi.gyp:ppapi_cpp', 448 'ppapi.gyp:ppapi_cpp',
448 'ppapi.gyp:ppapi_gles2', 449 'ppapi.gyp:ppapi_gles2',
449 ], 450 ],
450 'include_dirs': [ 451 'include_dirs': [
451 'lib/gl/include', 452 'lib/gl/include',
452 ], 453 ],
453 'sources': [ 454 'sources': [
454 # TODO(bbudge) Change to new example when implementation lands. 455 'examples/video_decode/video_decode.cc',
455 'examples/video_decode/video_decode_dev.cc',
456 'examples/video_decode/testdata.h', 456 'examples/video_decode/testdata.h',
457 ], 457 ],
458 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 458 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
459 'msvs_disabled_warnings': [ 4267, ], 459 'msvs_disabled_warnings': [ 4267, ],
460 }, 460 },
461 { 461 {
462 'target_name': 'ppapi_example_video_decode_dev', 462 'target_name': 'ppapi_example_video_decode_dev',
463 'dependencies': [ 463 'dependencies': [
464 'ppapi_example_skeleton', 464 'ppapi_example_skeleton',
465 'ppapi.gyp:ppapi_cpp', 465 'ppapi.gyp:ppapi_cpp',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 'lib/gl/include', 566 'lib/gl/include',
567 ], 567 ],
568 'sources': [ 568 'sources': [
569 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', 569 'examples/gles2_spinning_cube/gles2_spinning_cube.cc',
570 'examples/gles2_spinning_cube/spinning_cube.cc', 570 'examples/gles2_spinning_cube/spinning_cube.cc',
571 'examples/gles2_spinning_cube/spinning_cube.h', 571 'examples/gles2_spinning_cube/spinning_cube.h',
572 ], 572 ],
573 }, 573 },
574 ], 574 ],
575 } 575 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698