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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 8569003: Revert 110587 - Microphone support for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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_shared', 8 'target_name': 'ppapi_shared',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 16 matching lines...) Expand all
27 '..', 27 '..',
28 ], 28 ],
29 'export_dependent_settings': [ 29 'export_dependent_settings': [
30 '../base/base.gyp:base', 30 '../base/base.gyp:base',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 'shared_impl/audio_config_impl.cc', 33 'shared_impl/audio_config_impl.cc',
34 'shared_impl/audio_config_impl.h', 34 'shared_impl/audio_config_impl.h',
35 'shared_impl/audio_impl.cc', 35 'shared_impl/audio_impl.cc',
36 'shared_impl/audio_impl.h', 36 'shared_impl/audio_impl.h',
37 'shared_impl/audio_input_impl.cc',
38 'shared_impl/audio_input_impl.h',
39 'shared_impl/char_set_impl.cc', 37 'shared_impl/char_set_impl.cc',
40 'shared_impl/char_set_impl.h', 38 'shared_impl/char_set_impl.h',
41 'shared_impl/crypto_impl.cc', 39 'shared_impl/crypto_impl.cc',
42 'shared_impl/file_ref_impl.cc', 40 'shared_impl/file_ref_impl.cc',
43 'shared_impl/file_ref_impl.h', 41 'shared_impl/file_ref_impl.h',
44 'shared_impl/font_impl.cc', 42 'shared_impl/font_impl.cc',
45 'shared_impl/font_impl.h', 43 'shared_impl/font_impl.h',
46 'shared_impl/function_group_base.cc', 44 'shared_impl/function_group_base.cc',
47 'shared_impl/function_group_base.h', 45 'shared_impl/function_group_base.h',
48 'shared_impl/graphics_3d_impl.cc', 46 'shared_impl/graphics_3d_impl.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'shared_impl/private/net_address_private_impl.cc', 90 'shared_impl/private/net_address_private_impl.cc',
93 'shared_impl/private/net_address_private_impl.h', 91 'shared_impl/private/net_address_private_impl.h',
94 92
95 'thunk/common.h', 93 'thunk/common.h',
96 'thunk/common.cc', 94 'thunk/common.cc',
97 'thunk/enter.cc', 95 'thunk/enter.cc',
98 'thunk/enter.h', 96 'thunk/enter.h',
99 'thunk/ppb_audio_api.h', 97 'thunk/ppb_audio_api.h',
100 'thunk/ppb_audio_config_api.h', 98 'thunk/ppb_audio_config_api.h',
101 'thunk/ppb_audio_config_thunk.cc', 99 'thunk/ppb_audio_config_thunk.cc',
102 'thunk/ppb_audio_input_api.h',
103 'thunk/ppb_audio_input_thunk.cc',
104 'thunk/ppb_audio_input_trusted_thunk.cc',
105 'thunk/ppb_audio_thunk.cc', 100 'thunk/ppb_audio_thunk.cc',
106 'thunk/ppb_audio_trusted_thunk.cc', 101 'thunk/ppb_audio_trusted_thunk.cc',
107 'thunk/ppb_broker_api.h', 102 'thunk/ppb_broker_api.h',
108 'thunk/ppb_broker_thunk.cc', 103 'thunk/ppb_broker_thunk.cc',
109 'thunk/ppb_buffer_api.h', 104 'thunk/ppb_buffer_api.h',
110 'thunk/ppb_buffer_thunk.cc', 105 'thunk/ppb_buffer_thunk.cc',
111 'thunk/ppb_buffer_trusted_api.h', 106 'thunk/ppb_buffer_trusted_api.h',
112 'thunk/ppb_buffer_trusted_thunk.cc', 107 'thunk/ppb_buffer_trusted_thunk.cc',
113 'thunk/ppb_char_set_thunk.cc', 108 'thunk/ppb_char_set_thunk.cc',
114 'thunk/ppb_console_thunk.cc', 109 'thunk/ppb_console_thunk.cc',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'thunk/ppb_video_layer_api.h', 178 'thunk/ppb_video_layer_api.h',
184 'thunk/ppb_video_layer_thunk.cc', 179 'thunk/ppb_video_layer_thunk.cc',
185 'thunk/ppb_widget_api.h', 180 'thunk/ppb_widget_api.h',
186 'thunk/ppb_widget_thunk.cc', 181 'thunk/ppb_widget_thunk.cc',
187 'thunk/ppb_zoom_thunk.cc', 182 'thunk/ppb_zoom_thunk.cc',
188 'thunk/thunk.h', 183 'thunk/thunk.h',
189 ], 184 ],
190 }, 185 },
191 ], 186 ],
192 } 187 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698