| OLD | NEW |
| 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 Loading... |
| 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 | |
| 102 'thunk/common.h', | 97 'thunk/common.h', |
| 103 'thunk/common.cc', | 98 'thunk/common.cc', |
| 104 'thunk/enter.cc', | 99 'thunk/enter.cc', |
| 105 'thunk/enter.h', | 100 'thunk/enter.h', |
| 106 'thunk/ppb_audio_api.h', | 101 'thunk/ppb_audio_api.h', |
| 107 'thunk/ppb_audio_config_api.h', | 102 'thunk/ppb_audio_config_api.h', |
| 108 'thunk/ppb_audio_config_thunk.cc', | 103 'thunk/ppb_audio_config_thunk.cc', |
| 109 'thunk/ppb_audio_input_api.h', | 104 'thunk/ppb_audio_input_api.h', |
| 110 'thunk/ppb_audio_input_thunk.cc', | 105 'thunk/ppb_audio_input_thunk.cc', |
| 111 'thunk/ppb_audio_input_trusted_thunk.cc', | 106 'thunk/ppb_audio_input_trusted_thunk.cc', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'thunk/ppb_websocket_api.h', | 182 'thunk/ppb_websocket_api.h', |
| 188 'thunk/ppb_websocket_thunk.cc', | 183 'thunk/ppb_websocket_thunk.cc', |
| 189 'thunk/ppb_widget_api.h', | 184 'thunk/ppb_widget_api.h', |
| 190 'thunk/ppb_widget_thunk.cc', | 185 'thunk/ppb_widget_thunk.cc', |
| 191 'thunk/ppb_zoom_thunk.cc', | 186 'thunk/ppb_zoom_thunk.cc', |
| 192 'thunk/thunk.h', | 187 'thunk/thunk.h', |
| 193 ], | 188 ], |
| 194 }, | 189 }, |
| 195 ], | 190 ], |
| 196 } | 191 } |
| OLD | NEW |