| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'shared_impl/input_event_impl.cc', | 46 'shared_impl/input_event_impl.cc', |
| 47 'shared_impl/input_event_impl.h', | 47 'shared_impl/input_event_impl.h', |
| 48 'shared_impl/instance_impl.cc', | 48 'shared_impl/instance_impl.cc', |
| 49 'shared_impl/instance_impl.h', | 49 'shared_impl/instance_impl.h', |
| 50 'shared_impl/opengles2_impl.cc', | 50 'shared_impl/opengles2_impl.cc', |
| 51 'shared_impl/opengles2_impl.h', | 51 'shared_impl/opengles2_impl.h', |
| 52 'shared_impl/ppapi_preferences.cc', | 52 'shared_impl/ppapi_preferences.cc', |
| 53 'shared_impl/ppapi_preferences.h', | 53 'shared_impl/ppapi_preferences.h', |
| 54 'shared_impl/ppp_instance_combined.cc', | 54 'shared_impl/ppp_instance_combined.cc', |
| 55 'shared_impl/ppp_instance_combined.h', | 55 'shared_impl/ppp_instance_combined.h', |
| 56 'shared_impl/resource_object_base.cc', | 56 'shared_impl/resource.cc', |
| 57 'shared_impl/resource_object_base.h', | 57 'shared_impl/resource.h', |
| 58 'shared_impl/resource_tracker.cc', |
| 59 'shared_impl/resource_tracker.h', |
| 58 'shared_impl/time_conversion.cc', | 60 'shared_impl/time_conversion.cc', |
| 59 'shared_impl/time_conversion.h', | 61 'shared_impl/time_conversion.h', |
| 60 'shared_impl/tracker_base.cc', | 62 'shared_impl/tracker_base.cc', |
| 61 'shared_impl/tracker_base.h', | 63 'shared_impl/tracker_base.h', |
| 62 'shared_impl/url_util_impl.cc', | 64 'shared_impl/url_util_impl.cc', |
| 63 'shared_impl/url_util_impl.h', | 65 'shared_impl/url_util_impl.h', |
| 64 'shared_impl/var.cc', | 66 'shared_impl/var.cc', |
| 65 'shared_impl/var.h', | 67 'shared_impl/var.h', |
| 66 'shared_impl/var_tracker.cc', | 68 'shared_impl/var_tracker.cc', |
| 67 'shared_impl/var_tracker.h', | 69 'shared_impl/var_tracker.h', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 'thunk/ppb_video_layer_api.h', | 152 'thunk/ppb_video_layer_api.h', |
| 151 'thunk/ppb_video_layer_thunk.cc', | 153 'thunk/ppb_video_layer_thunk.cc', |
| 152 'thunk/ppb_widget_api.h', | 154 'thunk/ppb_widget_api.h', |
| 153 'thunk/ppb_widget_thunk.cc', | 155 'thunk/ppb_widget_thunk.cc', |
| 154 'thunk/ppb_zoom_thunk.cc', | 156 'thunk/ppb_zoom_thunk.cc', |
| 155 'thunk/thunk.h', | 157 'thunk/thunk.h', |
| 156 ], | 158 ], |
| 157 }, | 159 }, |
| 158 ], | 160 ], |
| 159 } | 161 } |
| OLD | NEW |