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

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 1128023009: ppapi: define PPB_AudioEncoder API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bbudge's nits & api release bump Created 5 years, 3 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
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_codecs.h',
(...skipping 10 matching lines...) Expand all
21 'c/pp_resource.h', 21 'c/pp_resource.h',
22 'c/pp_size.h', 22 'c/pp_size.h',
23 'c/pp_stdint.h', 23 'c/pp_stdint.h',
24 'c/pp_time.h', 24 'c/pp_time.h',
25 'c/pp_touch_point.h', 25 'c/pp_touch_point.h',
26 'c/pp_var.h', 26 'c/pp_var.h',
27 'c/ppb.h', 27 'c/ppb.h',
28 'c/ppb_audio.h', 28 'c/ppb_audio.h',
29 'c/ppb_audio_buffer.h', 29 'c/ppb_audio_buffer.h',
30 'c/ppb_audio_config.h', 30 'c/ppb_audio_config.h',
31 'c/ppb_audio_encoder.h',
31 'c/ppb_compositor.h', 32 'c/ppb_compositor.h',
32 'c/ppb_console.h', 33 'c/ppb_console.h',
33 'c/ppb_core.h', 34 'c/ppb_core.h',
34 'c/ppb_file_io.h', 35 'c/ppb_file_io.h',
35 'c/ppb_file_ref.h', 36 'c/ppb_file_ref.h',
36 'c/ppb_file_system.h', 37 'c/ppb_file_system.h',
37 'c/ppb_fullscreen.h', 38 'c/ppb_fullscreen.h',
38 'c/ppb_gamepad.h', 39 'c/ppb_gamepad.h',
39 'c/ppb_graphics_2d.h', 40 'c/ppb_graphics_2d.h',
40 'c/ppb_graphics_3d.h', 41 'c/ppb_graphics_3d.h',
(...skipping 16 matching lines...) Expand all
57 'c/ppb_text_input_controller.h', 58 'c/ppb_text_input_controller.h',
58 'c/ppb_udp_socket.h', 59 'c/ppb_udp_socket.h',
59 'c/ppb_url_loader.h', 60 'c/ppb_url_loader.h',
60 'c/ppb_url_request_info.h', 61 'c/ppb_url_request_info.h',
61 'c/ppb_url_response_info.h', 62 'c/ppb_url_response_info.h',
62 'c/ppb_var.h', 63 'c/ppb_var.h',
63 'c/ppb_var_array.h', 64 'c/ppb_var_array.h',
64 'c/ppb_var_array_buffer.h', 65 'c/ppb_var_array_buffer.h',
65 'c/ppb_var_dictionary.h', 66 'c/ppb_var_dictionary.h',
66 'c/ppb_video_decoder.h', 67 'c/ppb_video_decoder.h',
68 'c/ppb_video_encoder.h',
67 'c/ppb_video_frame.h', 69 'c/ppb_video_frame.h',
68 'c/ppb_view.h', 70 'c/ppb_view.h',
69 'c/ppb_websocket.h', 71 'c/ppb_websocket.h',
70 'c/ppp.h', 72 'c/ppp.h',
71 'c/ppp_graphics_3d.h', 73 'c/ppp_graphics_3d.h',
72 'c/ppp_input_event.h', 74 'c/ppp_input_event.h',
73 'c/ppp_instance.h', 75 'c/ppp_instance.h',
74 'c/ppp_messaging.h', 76 'c/ppp_messaging.h',
75 'c/ppp_mouse_lock.h', 77 'c/ppp_mouse_lock.h',
76 78
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 ], 146 ],
145 'cpp_source_files': [ 147 'cpp_source_files': [
146 'cpp/array_output.cc', 148 'cpp/array_output.cc',
147 'cpp/array_output.h', 149 'cpp/array_output.h',
148 'cpp/audio.cc', 150 'cpp/audio.cc',
149 'cpp/audio.h', 151 'cpp/audio.h',
150 'cpp/audio_buffer.cc', 152 'cpp/audio_buffer.cc',
151 'cpp/audio_buffer.h', 153 'cpp/audio_buffer.h',
152 'cpp/audio_config.cc', 154 'cpp/audio_config.cc',
153 'cpp/audio_config.h', 155 'cpp/audio_config.h',
156 'cpp/audio_encoder.cc',
157 'cpp/audio_encoder.h',
154 'cpp/completion_callback.h', 158 'cpp/completion_callback.h',
155 'cpp/compositor.cc', 159 'cpp/compositor.cc',
156 'cpp/compositor.h', 160 'cpp/compositor.h',
157 'cpp/compositor_layer.cc', 161 'cpp/compositor_layer.cc',
158 'cpp/compositor_layer.h', 162 'cpp/compositor_layer.h',
159 'cpp/core.cc', 163 'cpp/core.cc',
160 'cpp/core.h', 164 'cpp/core.h',
161 'cpp/directory_entry.cc', 165 'cpp/directory_entry.cc',
162 'cpp/directory_entry.h', 166 'cpp/directory_entry.h',
163 'cpp/file_io.cc', 167 'cpp/file_io.cc',
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 'tests/test_x509_certificate_private.h', 563 'tests/test_x509_certificate_private.h',
560 564
561 # Deprecated test cases. 565 # Deprecated test cases.
562 'tests/test_instance_deprecated.cc', 566 'tests/test_instance_deprecated.cc',
563 'tests/test_instance_deprecated.h', 567 'tests/test_instance_deprecated.h',
564 'tests/test_var_deprecated.cc', 568 'tests/test_var_deprecated.cc',
565 'tests/test_var_deprecated.h', 569 'tests/test_var_deprecated.h',
566 ], 570 ],
567 }, 571 },
568 } 572 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698