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

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: 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 { 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'simple_thread.cc', 85 'simple_thread.cc',
85 ], 86 ],
86 } 87 }
87 ], 88 ],
88 'HEADERS': [ 89 'HEADERS': [
89 { 90 {
90 'FILES': [ 91 'FILES': [
91 'array_output.h', 92 'array_output.h',
92 'audio_buffer.h', 93 'audio_buffer.h',
93 'audio_config.h', 94 'audio_config.h',
95 'audio_encoder.h',
94 'audio.h', 96 'audio.h',
95 'completion_callback.h', 97 'completion_callback.h',
96 'compositor.h', 98 'compositor.h',
97 'compositor_layer.h', 99 'compositor_layer.h',
98 'core.h', 100 'core.h',
99 'directory_entry.h', 101 'directory_entry.h',
100 'file_io.h', 102 'file_io.h',
101 'file_ref.h', 103 'file_ref.h',
102 'file_system.h', 104 'file_system.h',
103 'fullscreen.h', 105 'fullscreen.h',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'lock.h', 197 'lock.h',
196 'simple_thread.h', 198 'simple_thread.h',
197 ], 199 ],
198 'DEST': 'include/ppapi/utility/threading', 200 'DEST': 'include/ppapi/utility/threading',
199 }, 201 },
200 ], 202 ],
201 'DEST': 'src', 203 'DEST': 'src',
202 'NAME': 'ppapi_cpp', 204 'NAME': 'ppapi_cpp',
203 } 205 }
204 206
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698