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

Side by Side Diff: native_client_sdk/src/libraries/ppapi_cpp/library.dsc

Issue 1128023009: ppapi: define PPB_AudioEncoder API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add GetNumberOfSamples() for Speex Created 5 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
OLDNEW
1 { 1 {
2 'SEARCH': [ 2 'SEARCH': [
3 '../../../../ppapi/cpp', 3 '../../../../ppapi/cpp',
4 '../../../../ppapi/cpp/dev', 4 '../../../../ppapi/cpp/dev',
5 '../../../../ppapi/utility', 5 '../../../../ppapi/utility',
6 '../../../../ppapi/utility/graphics', 6 '../../../../ppapi/utility/graphics',
7 '../../../../ppapi/utility/threading', 7 '../../../../ppapi/utility/threading',
8 '../../../../ppapi/utility/websocket', 8 '../../../../ppapi/utility/websocket',
9 ], 9 ],
10 'TARGETS': [ 10 'TARGETS': [
11 { 11 {
12 'NAME' : 'ppapi_cpp', 12 'NAME' : 'ppapi_cpp',
13 'TYPE' : 'lib', 13 'TYPE' : 'lib',
14 'SOURCES' : [ 14 'SOURCES' : [
15 # ppapi/cpp 15 # ppapi/cpp
16 'array_output.cc', 16 'array_output.cc',
17 'audio.cc', 17 'audio.cc',
18 'audio_buffer.cc', 18 'audio_buffer.cc',
19 'audio_config.cc', 19 'audio_config.cc',
20 'audio_encoder.cc',
20 'compositor.cc', 21 'compositor.cc',
21 'compositor_layer.cc', 22 'compositor_layer.cc',
22 'core.cc', 23 'core.cc',
23 'directory_entry.cc', 24 'directory_entry.cc',
24 'file_io.cc', 25 'file_io.cc',
25 'file_ref.cc', 26 'file_ref.cc',
26 'file_system.cc', 27 'file_system.cc',
27 'fullscreen.cc', 28 'fullscreen.cc',
28 'graphics_2d.cc', 29 'graphics_2d.cc',
29 'graphics_3d.cc', 30 'graphics_3d.cc',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'simple_thread.cc', 87 'simple_thread.cc',
87 ], 88 ],
88 } 89 }
89 ], 90 ],
90 'HEADERS': [ 91 'HEADERS': [
91 { 92 {
92 'FILES': [ 93 'FILES': [
93 'array_output.h', 94 'array_output.h',
94 'audio_buffer.h', 95 'audio_buffer.h',
95 'audio_config.h', 96 'audio_config.h',
97 'audio_encoder.h',
96 'audio.h', 98 'audio.h',
97 'completion_callback.h', 99 'completion_callback.h',
98 'compositor.h', 100 'compositor.h',
99 'compositor_layer.h', 101 'compositor_layer.h',
100 'core.h', 102 'core.h',
101 'directory_entry.h', 103 'directory_entry.h',
102 'file_io.h', 104 'file_io.h',
103 'file_ref.h', 105 'file_ref.h',
104 'file_system.h', 106 'file_system.h',
105 'fullscreen.h', 107 'fullscreen.h',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'lock.h', 202 'lock.h',
201 'simple_thread.h', 203 'simple_thread.h',
202 ], 204 ],
203 'DEST': 'include/ppapi/utility/threading', 205 'DEST': 'include/ppapi/utility/threading',
204 }, 206 },
205 ], 207 ],
206 'DEST': 'src', 208 'DEST': 'src',
207 'NAME': 'ppapi_cpp', 209 'NAME': 'ppapi_cpp',
208 } 210 }
209 211
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698