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': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 20 matching lines...) Expand all Loading... |
31 'shared_impl/char_set_impl.cc', | 31 'shared_impl/char_set_impl.cc', |
32 'shared_impl/char_set_impl.h', | 32 'shared_impl/char_set_impl.h', |
33 'shared_impl/crypto_impl.cc', | 33 'shared_impl/crypto_impl.cc', |
34 'shared_impl/crypto_impl.h', | 34 'shared_impl/crypto_impl.h', |
35 'shared_impl/font_impl.cc', | 35 'shared_impl/font_impl.cc', |
36 'shared_impl/font_impl.h', | 36 'shared_impl/font_impl.h', |
37 'shared_impl/function_group_base.cc', | 37 'shared_impl/function_group_base.cc', |
38 'shared_impl/function_group_base.h', | 38 'shared_impl/function_group_base.h', |
39 'shared_impl/graphics_3d_impl.cc', | 39 'shared_impl/graphics_3d_impl.cc', |
40 'shared_impl/graphics_3d_impl.h', | 40 'shared_impl/graphics_3d_impl.h', |
| 41 'shared_impl/id_assignment.cc', |
| 42 'shared_impl/id_assignment.h', |
41 'shared_impl/image_data_impl.cc', | 43 'shared_impl/image_data_impl.cc', |
42 'shared_impl/image_data_impl.h', | 44 'shared_impl/image_data_impl.h', |
43 'shared_impl/input_event_impl.cc', | 45 'shared_impl/input_event_impl.cc', |
44 'shared_impl/input_event_impl.h', | 46 'shared_impl/input_event_impl.h', |
45 'shared_impl/instance_impl.cc', | 47 'shared_impl/instance_impl.cc', |
46 'shared_impl/instance_impl.h', | 48 'shared_impl/instance_impl.h', |
47 'shared_impl/opengles2_impl.cc', | 49 'shared_impl/opengles2_impl.cc', |
48 'shared_impl/opengles2_impl.h', | 50 'shared_impl/opengles2_impl.h', |
49 'shared_impl/ppapi_preferences.cc', | 51 'shared_impl/ppapi_preferences.cc', |
50 'shared_impl/ppapi_preferences.h', | 52 'shared_impl/ppapi_preferences.h', |
51 'shared_impl/ppp_instance_combined.cc', | 53 'shared_impl/ppp_instance_combined.cc', |
52 'shared_impl/ppp_instance_combined.h', | 54 'shared_impl/ppp_instance_combined.h', |
53 'shared_impl/resource_object_base.cc', | 55 'shared_impl/resource_object_base.cc', |
54 'shared_impl/resource_object_base.h', | 56 'shared_impl/resource_object_base.h', |
55 'shared_impl/time_conversion.cc', | 57 'shared_impl/time_conversion.cc', |
56 'shared_impl/time_conversion.h', | 58 'shared_impl/time_conversion.h', |
57 'shared_impl/tracker_base.cc', | 59 'shared_impl/tracker_base.cc', |
58 'shared_impl/tracker_base.h', | 60 'shared_impl/tracker_base.h', |
59 'shared_impl/url_util_impl.cc', | 61 'shared_impl/url_util_impl.cc', |
60 'shared_impl/url_util_impl.h', | 62 'shared_impl/url_util_impl.h', |
61 'shared_impl/var.cc', | 63 'shared_impl/var.cc', |
62 'shared_impl/var.h', | 64 'shared_impl/var.h', |
| 65 'shared_impl/var_tracker.cc', |
| 66 'shared_impl/var_tracker.h', |
63 'shared_impl/video_decoder_impl.cc', | 67 'shared_impl/video_decoder_impl.cc', |
64 'shared_impl/video_decoder_impl.h', | 68 'shared_impl/video_decoder_impl.h', |
65 'shared_impl/webkit_forwarding.cc', | 69 'shared_impl/webkit_forwarding.cc', |
66 'shared_impl/webkit_forwarding.h', | 70 'shared_impl/webkit_forwarding.h', |
67 | 71 |
68 'thunk/common.h', | 72 'thunk/common.h', |
69 'thunk/common.cc', | 73 'thunk/common.cc', |
70 'thunk/enter.h', | 74 'thunk/enter.h', |
71 'thunk/ppb_audio_api.h', | 75 'thunk/ppb_audio_api.h', |
72 'thunk/ppb_audio_config_api.h', | 76 'thunk/ppb_audio_config_api.h', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'thunk/ppb_video_layer_api.h', | 149 'thunk/ppb_video_layer_api.h', |
146 'thunk/ppb_video_layer_thunk.cc', | 150 'thunk/ppb_video_layer_thunk.cc', |
147 'thunk/ppb_widget_api.h', | 151 'thunk/ppb_widget_api.h', |
148 'thunk/ppb_widget_thunk.cc', | 152 'thunk/ppb_widget_thunk.cc', |
149 'thunk/ppb_zoom_thunk.cc', | 153 'thunk/ppb_zoom_thunk.cc', |
150 'thunk/thunk.h', | 154 'thunk/thunk.h', |
151 ], | 155 ], |
152 }, | 156 }, |
153 ], | 157 ], |
154 } | 158 } |
OLD | NEW |