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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'shared_impl/instance_impl.h', | 56 'shared_impl/instance_impl.h', |
57 'shared_impl/memory_impl.cc', | 57 'shared_impl/memory_impl.cc', |
58 'shared_impl/opengles2_impl.cc', | 58 'shared_impl/opengles2_impl.cc', |
59 'shared_impl/opengles2_impl.h', | 59 'shared_impl/opengles2_impl.h', |
60 'shared_impl/ppapi_globals.cc', | 60 'shared_impl/ppapi_globals.cc', |
61 'shared_impl/ppapi_globals.h', | 61 'shared_impl/ppapi_globals.h', |
62 'shared_impl/ppapi_preferences.cc', | 62 'shared_impl/ppapi_preferences.cc', |
63 'shared_impl/ppapi_preferences.h', | 63 'shared_impl/ppapi_preferences.h', |
64 'shared_impl/ppp_instance_combined.cc', | 64 'shared_impl/ppp_instance_combined.cc', |
65 'shared_impl/ppp_instance_combined.h', | 65 'shared_impl/ppp_instance_combined.h', |
66 # TODO(viettrungluu): Split this out; it won't be used in NaCl. | |
67 'shared_impl/private/flash_net_address_impl.cc', | |
68 'shared_impl/proxy_lock.cc', | 66 'shared_impl/proxy_lock.cc', |
69 'shared_impl/proxy_lock.h', | 67 'shared_impl/proxy_lock.h', |
70 'shared_impl/resource.cc', | 68 'shared_impl/resource.cc', |
71 'shared_impl/resource.h', | 69 'shared_impl/resource.h', |
72 'shared_impl/resource_tracker.cc', | 70 'shared_impl/resource_tracker.cc', |
73 'shared_impl/resource_tracker.h', | 71 'shared_impl/resource_tracker.h', |
74 'shared_impl/scoped_pp_resource.cc', | 72 'shared_impl/scoped_pp_resource.cc', |
75 'shared_impl/scoped_pp_resource.h', | 73 'shared_impl/scoped_pp_resource.h', |
76 'shared_impl/time_conversion.cc', | 74 'shared_impl/time_conversion.cc', |
77 'shared_impl/time_conversion.h', | 75 'shared_impl/time_conversion.h', |
78 'shared_impl/url_request_info_impl.cc', | 76 'shared_impl/url_request_info_impl.cc', |
79 'shared_impl/url_request_info_impl.h', | 77 'shared_impl/url_request_info_impl.h', |
80 'shared_impl/url_util_impl.cc', | 78 'shared_impl/url_util_impl.cc', |
81 'shared_impl/url_util_impl.h', | 79 'shared_impl/url_util_impl.h', |
82 'shared_impl/var.cc', | 80 'shared_impl/var.cc', |
83 'shared_impl/var.h', | 81 'shared_impl/var.h', |
84 'shared_impl/var_tracker.cc', | 82 'shared_impl/var_tracker.cc', |
85 'shared_impl/var_tracker.h', | 83 'shared_impl/var_tracker.h', |
86 'shared_impl/video_decoder_impl.cc', | 84 'shared_impl/video_decoder_impl.cc', |
87 'shared_impl/video_decoder_impl.h', | 85 'shared_impl/video_decoder_impl.h', |
88 'shared_impl/webkit_forwarding.cc', | 86 'shared_impl/webkit_forwarding.cc', |
89 'shared_impl/webkit_forwarding.h', | 87 'shared_impl/webkit_forwarding.h', |
90 | 88 |
| 89 # TODO(viettrungluu): Split these out; it won't be used in NaCl. |
| 90 'shared_impl/private/net_address_private_impl.cc', |
| 91 'shared_impl/private/net_address_private_impl.h', |
| 92 |
91 'thunk/common.h', | 93 'thunk/common.h', |
92 'thunk/common.cc', | 94 'thunk/common.cc', |
93 'thunk/enter.cc', | 95 'thunk/enter.cc', |
94 'thunk/enter.h', | 96 'thunk/enter.h', |
95 'thunk/ppb_audio_api.h', | 97 'thunk/ppb_audio_api.h', |
96 'thunk/ppb_audio_config_api.h', | 98 'thunk/ppb_audio_config_api.h', |
97 'thunk/ppb_audio_config_thunk.cc', | 99 'thunk/ppb_audio_config_thunk.cc', |
98 'thunk/ppb_audio_thunk.cc', | 100 'thunk/ppb_audio_thunk.cc', |
99 'thunk/ppb_audio_trusted_thunk.cc', | 101 'thunk/ppb_audio_trusted_thunk.cc', |
100 'thunk/ppb_broker_api.h', | 102 'thunk/ppb_broker_api.h', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 'thunk/ppb_video_layer_api.h', | 178 'thunk/ppb_video_layer_api.h', |
177 'thunk/ppb_video_layer_thunk.cc', | 179 'thunk/ppb_video_layer_thunk.cc', |
178 'thunk/ppb_widget_api.h', | 180 'thunk/ppb_widget_api.h', |
179 'thunk/ppb_widget_thunk.cc', | 181 'thunk/ppb_widget_thunk.cc', |
180 'thunk/ppb_zoom_thunk.cc', | 182 'thunk/ppb_zoom_thunk.cc', |
181 'thunk/thunk.h', | 183 'thunk/thunk.h', |
182 ], | 184 ], |
183 }, | 185 }, |
184 ], | 186 ], |
185 } | 187 } |
OLD | NEW |