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

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 210373003: Pepper VideoDecoder API definition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude thunk from build for now. 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
« no previous file with comments | « ppapi/ppapi_shared.gypi ('k') | ppapi/thunk/ppb_video_decoder_api.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'c_source_files': [ 7 'c_source_files': [
8 'c/pp_array_output.h', 8 'c/pp_array_output.h',
9 'c/pp_bool.h', 9 'c/pp_bool.h',
10 'c/pp_codecs.h',
10 'c/pp_completion_callback.h', 11 'c/pp_completion_callback.h',
11 'c/pp_errors.h', 12 'c/pp_errors.h',
12 'c/pp_file_info.h', 13 'c/pp_file_info.h',
13 'c/pp_graphics_3d.h', 14 'c/pp_graphics_3d.h',
14 'c/pp_input_event.h', 15 'c/pp_input_event.h',
15 'c/pp_instance.h', 16 'c/pp_instance.h',
16 'c/pp_macros.h', 17 'c/pp_macros.h',
17 'c/pp_module.h', 18 'c/pp_module.h',
18 'c/pp_point.h', 19 'c/pp_point.h',
19 'c/pp_rect.h', 20 'c/pp_rect.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'c/ppb_tcp_socket.h', 56 'c/ppb_tcp_socket.h',
56 'c/ppb_text_input_controller.h', 57 'c/ppb_text_input_controller.h',
57 'c/ppb_udp_socket.h', 58 'c/ppb_udp_socket.h',
58 'c/ppb_url_loader.h', 59 'c/ppb_url_loader.h',
59 'c/ppb_url_request_info.h', 60 'c/ppb_url_request_info.h',
60 'c/ppb_url_response_info.h', 61 'c/ppb_url_response_info.h',
61 'c/ppb_var.h', 62 'c/ppb_var.h',
62 'c/ppb_var_array.h', 63 'c/ppb_var_array.h',
63 'c/ppb_var_array_buffer.h', 64 'c/ppb_var_array_buffer.h',
64 'c/ppb_var_dictionary.h', 65 'c/ppb_var_dictionary.h',
66 'c/ppb_video_decoder.h',
65 'c/ppb_video_frame.h', 67 'c/ppb_video_frame.h',
66 'c/ppb_view.h', 68 'c/ppb_view.h',
67 'c/ppb_websocket.h', 69 'c/ppb_websocket.h',
68 'c/ppp.h', 70 'c/ppp.h',
69 'c/ppp_graphics_3d.h', 71 'c/ppp_graphics_3d.h',
70 'c/ppp_input_event.h', 72 'c/ppp_input_event.h',
71 'c/ppp_instance.h', 73 'c/ppp_instance.h',
72 'c/ppp_messaging.h', 74 'c/ppp_messaging.h',
73 'c/ppp_mouse_lock.h', 75 'c/ppp_mouse_lock.h',
74 76
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'cpp/url_response_info.cc', 231 'cpp/url_response_info.cc',
230 'cpp/url_response_info.h', 232 'cpp/url_response_info.h',
231 'cpp/var.cc', 233 'cpp/var.cc',
232 'cpp/var.h', 234 'cpp/var.h',
233 'cpp/var_array.cc', 235 'cpp/var_array.cc',
234 'cpp/var_array.h', 236 'cpp/var_array.h',
235 'cpp/var_array_buffer.cc', 237 'cpp/var_array_buffer.cc',
236 'cpp/var_array_buffer.h', 238 'cpp/var_array_buffer.h',
237 'cpp/var_dictionary.cc', 239 'cpp/var_dictionary.cc',
238 'cpp/var_dictionary.h', 240 'cpp/var_dictionary.h',
241 'cpp/video_decoder.cc',
242 'cpp/video_decoder.h',
239 'cpp/video_frame.cc', 243 'cpp/video_frame.cc',
240 'cpp/video_frame.h', 244 'cpp/video_frame.h',
241 'cpp/view.cc', 245 'cpp/view.cc',
242 'cpp/view.h', 246 'cpp/view.h',
243 'cpp/websocket.cc', 247 'cpp/websocket.cc',
244 'cpp/websocket.h', 248 'cpp/websocket.h',
245 249
246 # Dev interfaces. 250 # Dev interfaces.
247 'cpp/dev/alarms_dev.cc', 251 'cpp/dev/alarms_dev.cc',
248 'cpp/dev/alarms_dev.h', 252 'cpp/dev/alarms_dev.h',
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 'tests/test_x509_certificate_private.h', 575 'tests/test_x509_certificate_private.h',
572 576
573 # Deprecated test cases. 577 # Deprecated test cases.
574 'tests/test_instance_deprecated.cc', 578 'tests/test_instance_deprecated.cc',
575 'tests/test_instance_deprecated.h', 579 'tests/test_instance_deprecated.h',
576 'tests/test_var_deprecated.cc', 580 'tests/test_var_deprecated.cc',
577 'tests/test_var_deprecated.h', 581 'tests/test_var_deprecated.h',
578 ], 582 ],
579 }, 583 },
580 } 584 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared.gypi ('k') | ppapi/thunk/ppb_video_decoder_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698