| 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 16 matching lines...) Expand all Loading... |
| 27 '..', | 27 '..', |
| 28 ], | 28 ], |
| 29 'export_dependent_settings': [ | 29 'export_dependent_settings': [ |
| 30 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
| 31 ], | 31 ], |
| 32 'sources': [ | 32 'sources': [ |
| 33 'shared_impl/audio_config_impl.cc', | 33 'shared_impl/audio_config_impl.cc', |
| 34 'shared_impl/audio_config_impl.h', | 34 'shared_impl/audio_config_impl.h', |
| 35 'shared_impl/audio_impl.cc', | 35 'shared_impl/audio_impl.cc', |
| 36 'shared_impl/audio_impl.h', | 36 'shared_impl/audio_impl.h', |
| 37 'shared_impl/audio_input_impl.cc', |
| 38 'shared_impl/audio_input_impl.h', |
| 37 'shared_impl/char_set_impl.cc', | 39 'shared_impl/char_set_impl.cc', |
| 38 'shared_impl/char_set_impl.h', | 40 'shared_impl/char_set_impl.h', |
| 39 'shared_impl/crypto_impl.cc', | 41 'shared_impl/crypto_impl.cc', |
| 40 'shared_impl/file_ref_impl.cc', | 42 'shared_impl/file_ref_impl.cc', |
| 41 'shared_impl/file_ref_impl.h', | 43 'shared_impl/file_ref_impl.h', |
| 42 'shared_impl/font_impl.cc', | 44 'shared_impl/font_impl.cc', |
| 43 'shared_impl/font_impl.h', | 45 'shared_impl/font_impl.h', |
| 44 'shared_impl/function_group_base.cc', | 46 'shared_impl/function_group_base.cc', |
| 45 'shared_impl/function_group_base.h', | 47 'shared_impl/function_group_base.h', |
| 46 'shared_impl/graphics_3d_impl.cc', | 48 'shared_impl/graphics_3d_impl.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'shared_impl/private/net_address_private_impl.cc', | 92 'shared_impl/private/net_address_private_impl.cc', |
| 91 'shared_impl/private/net_address_private_impl.h', | 93 'shared_impl/private/net_address_private_impl.h', |
| 92 | 94 |
| 93 'thunk/common.h', | 95 'thunk/common.h', |
| 94 'thunk/common.cc', | 96 'thunk/common.cc', |
| 95 'thunk/enter.cc', | 97 'thunk/enter.cc', |
| 96 'thunk/enter.h', | 98 'thunk/enter.h', |
| 97 'thunk/ppb_audio_api.h', | 99 'thunk/ppb_audio_api.h', |
| 98 'thunk/ppb_audio_config_api.h', | 100 'thunk/ppb_audio_config_api.h', |
| 99 'thunk/ppb_audio_config_thunk.cc', | 101 'thunk/ppb_audio_config_thunk.cc', |
| 102 'thunk/ppb_audio_input_api.h', |
| 103 'thunk/ppb_audio_input_thunk.cc', |
| 104 'thunk/ppb_audio_input_trusted_thunk.cc', |
| 100 'thunk/ppb_audio_thunk.cc', | 105 'thunk/ppb_audio_thunk.cc', |
| 101 'thunk/ppb_audio_trusted_thunk.cc', | 106 'thunk/ppb_audio_trusted_thunk.cc', |
| 102 'thunk/ppb_broker_api.h', | 107 'thunk/ppb_broker_api.h', |
| 103 'thunk/ppb_broker_thunk.cc', | 108 'thunk/ppb_broker_thunk.cc', |
| 104 'thunk/ppb_buffer_api.h', | 109 'thunk/ppb_buffer_api.h', |
| 105 'thunk/ppb_buffer_thunk.cc', | 110 'thunk/ppb_buffer_thunk.cc', |
| 106 'thunk/ppb_buffer_trusted_api.h', | 111 'thunk/ppb_buffer_trusted_api.h', |
| 107 'thunk/ppb_buffer_trusted_thunk.cc', | 112 'thunk/ppb_buffer_trusted_thunk.cc', |
| 108 'thunk/ppb_char_set_thunk.cc', | 113 'thunk/ppb_char_set_thunk.cc', |
| 109 'thunk/ppb_console_thunk.cc', | 114 'thunk/ppb_console_thunk.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'thunk/ppb_video_layer_api.h', | 183 'thunk/ppb_video_layer_api.h', |
| 179 'thunk/ppb_video_layer_thunk.cc', | 184 'thunk/ppb_video_layer_thunk.cc', |
| 180 'thunk/ppb_widget_api.h', | 185 'thunk/ppb_widget_api.h', |
| 181 'thunk/ppb_widget_thunk.cc', | 186 'thunk/ppb_widget_thunk.cc', |
| 182 'thunk/ppb_zoom_thunk.cc', | 187 'thunk/ppb_zoom_thunk.cc', |
| 183 'thunk/thunk.h', | 188 'thunk/thunk.h', |
| 184 ], | 189 ], |
| 185 }, | 190 }, |
| 186 ], | 191 ], |
| 187 } | 192 } |
| OLD | NEW |