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 15 matching lines...) Expand all Loading... | |
26 '..', | 26 '..', |
27 ], | 27 ], |
28 'export_dependent_settings': [ | 28 'export_dependent_settings': [ |
29 '../base/base.gyp:base', | 29 '../base/base.gyp:base', |
30 ], | 30 ], |
31 'sources': [ | 31 'sources': [ |
32 'shared_impl/audio_config_impl.cc', | 32 'shared_impl/audio_config_impl.cc', |
33 'shared_impl/audio_config_impl.h', | 33 'shared_impl/audio_config_impl.h', |
34 'shared_impl/audio_impl.cc', | 34 'shared_impl/audio_impl.cc', |
35 'shared_impl/audio_impl.h', | 35 'shared_impl/audio_impl.h', |
36 'shared_impl/audio_input_impl.cc', | |
37 'shared_impl/audio_input_impl.h', | |
36 'shared_impl/char_set_impl.cc', | 38 'shared_impl/char_set_impl.cc', |
37 'shared_impl/char_set_impl.h', | 39 'shared_impl/char_set_impl.h', |
38 'shared_impl/crypto_impl.cc', | 40 'shared_impl/crypto_impl.cc', |
39 'shared_impl/crypto_impl.h', | 41 'shared_impl/crypto_impl.h', |
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', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
85 | 87 |
86 'thunk/common.h', | 88 'thunk/common.h', |
87 'thunk/common.cc', | 89 'thunk/common.cc', |
88 'thunk/enter.cc', | 90 'thunk/enter.cc', |
89 'thunk/enter.h', | 91 'thunk/enter.h', |
90 'thunk/ppb_audio_api.h', | 92 'thunk/ppb_audio_api.h', |
91 'thunk/ppb_audio_config_api.h', | 93 'thunk/ppb_audio_config_api.h', |
92 'thunk/ppb_audio_config_thunk.cc', | 94 'thunk/ppb_audio_config_thunk.cc', |
93 'thunk/ppb_audio_thunk.cc', | 95 'thunk/ppb_audio_thunk.cc', |
94 'thunk/ppb_audio_trusted_thunk.cc', | 96 'thunk/ppb_audio_trusted_thunk.cc', |
97 'thunk/ppb_audio_input_api.h', | |
viettrungluu
2011/11/08 00:41:54
nit: alphabetical order
| |
98 'thunk/ppb_audio_input_thunk.cc', | |
99 'thunk/ppb_audio_input_trusted_thunk.cc', | |
95 'thunk/ppb_broker_api.h', | 100 'thunk/ppb_broker_api.h', |
96 'thunk/ppb_broker_thunk.cc', | 101 'thunk/ppb_broker_thunk.cc', |
97 'thunk/ppb_buffer_api.h', | 102 'thunk/ppb_buffer_api.h', |
98 'thunk/ppb_buffer_thunk.cc', | 103 'thunk/ppb_buffer_thunk.cc', |
99 'thunk/ppb_buffer_trusted_api.h', | 104 'thunk/ppb_buffer_trusted_api.h', |
100 'thunk/ppb_buffer_trusted_thunk.cc', | 105 'thunk/ppb_buffer_trusted_thunk.cc', |
101 'thunk/ppb_char_set_api.h', | 106 'thunk/ppb_char_set_api.h', |
102 'thunk/ppb_char_set_thunk.cc', | 107 'thunk/ppb_char_set_thunk.cc', |
103 'thunk/ppb_console_thunk.cc', | 108 'thunk/ppb_console_thunk.cc', |
104 'thunk/ppb_context_3d_api.h', | 109 'thunk/ppb_context_3d_api.h', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
170 'thunk/ppb_video_layer_api.h', | 175 'thunk/ppb_video_layer_api.h', |
171 'thunk/ppb_video_layer_thunk.cc', | 176 'thunk/ppb_video_layer_thunk.cc', |
172 'thunk/ppb_widget_api.h', | 177 'thunk/ppb_widget_api.h', |
173 'thunk/ppb_widget_thunk.cc', | 178 'thunk/ppb_widget_thunk.cc', |
174 'thunk/ppb_zoom_thunk.cc', | 179 'thunk/ppb_zoom_thunk.cc', |
175 'thunk/thunk.h', | 180 'thunk/thunk.h', |
176 ], | 181 ], |
177 }, | 182 }, |
178 ], | 183 ], |
179 } | 184 } |
OLD | NEW |