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

Side by Side Diff: ppapi/ppapi_shared.gypi

Issue 8804006: Reland 8688002: PPB_TCPSocket_Private/PPB_UDPSocket_Private are exposed to Browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extend RenderViewObserver Created 9 years 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
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'shared_impl/var_tracker.h', 87 'shared_impl/var_tracker.h',
88 'shared_impl/video_decoder_impl.cc', 88 'shared_impl/video_decoder_impl.cc',
89 'shared_impl/video_decoder_impl.h', 89 'shared_impl/video_decoder_impl.h',
90 'shared_impl/webkit_forwarding.cc', 90 'shared_impl/webkit_forwarding.cc',
91 'shared_impl/webkit_forwarding.h', 91 'shared_impl/webkit_forwarding.h',
92 92
93 # TODO(viettrungluu): Split these out; it won't be used in NaCl. 93 # TODO(viettrungluu): Split these out; it won't be used in NaCl.
94 'shared_impl/private/net_address_private_impl.cc', 94 'shared_impl/private/net_address_private_impl.cc',
95 'shared_impl/private/net_address_private_impl.h', 95 'shared_impl/private/net_address_private_impl.h',
96 96
97 'shared_impl/private/tcp_socket_private_impl.cc',
98 'shared_impl/private/tcp_socket_private_impl.h',
99 'shared_impl/private/udp_socket_private_impl.cc',
100 'shared_impl/private/udp_socket_private_impl.h',
101
97 'thunk/common.h', 102 'thunk/common.h',
98 'thunk/common.cc', 103 'thunk/common.cc',
99 'thunk/enter.cc', 104 'thunk/enter.cc',
100 'thunk/enter.h', 105 'thunk/enter.h',
101 'thunk/ppb_audio_api.h', 106 'thunk/ppb_audio_api.h',
102 'thunk/ppb_audio_config_api.h', 107 'thunk/ppb_audio_config_api.h',
103 'thunk/ppb_audio_config_thunk.cc', 108 'thunk/ppb_audio_config_thunk.cc',
104 'thunk/ppb_audio_input_api.h', 109 'thunk/ppb_audio_input_api.h',
105 'thunk/ppb_audio_input_thunk.cc', 110 'thunk/ppb_audio_input_thunk.cc',
106 'thunk/ppb_audio_input_trusted_thunk.cc', 111 'thunk/ppb_audio_input_trusted_thunk.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'thunk/ppb_websocket_api.h', 187 'thunk/ppb_websocket_api.h',
183 'thunk/ppb_websocket_thunk.cc', 188 'thunk/ppb_websocket_thunk.cc',
184 'thunk/ppb_widget_api.h', 189 'thunk/ppb_widget_api.h',
185 'thunk/ppb_widget_thunk.cc', 190 'thunk/ppb_widget_thunk.cc',
186 'thunk/ppb_zoom_thunk.cc', 191 'thunk/ppb_zoom_thunk.cc',
187 'thunk/thunk.h', 192 'thunk/thunk.h',
188 ], 193 ],
189 }, 194 },
190 ], 195 ],
191 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698