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_c', | 8 'target_name': 'ppapi_c', |
9 'type': 'none', | 9 'type': 'none', |
10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'c/pp_var.h', | 30 'c/pp_var.h', |
31 'c/ppb.h', | 31 'c/ppb.h', |
32 'c/ppb_audio.h', | 32 'c/ppb_audio.h', |
33 'c/ppb_audio_config.h', | 33 'c/ppb_audio_config.h', |
34 'c/ppb_core.h', | 34 'c/ppb_core.h', |
35 'c/ppb_file_io.h', | 35 'c/ppb_file_io.h', |
36 'c/ppb_file_ref.h', | 36 'c/ppb_file_ref.h', |
37 'c/ppb_file_system.h', | 37 'c/ppb_file_system.h', |
38 'c/ppb_graphics_2d.h', | 38 'c/ppb_graphics_2d.h', |
39 'c/ppb_image_data.h', | 39 'c/ppb_image_data.h', |
| 40 'c/ppb_input_event.h', |
40 'c/ppb_instance.h', | 41 'c/ppb_instance.h', |
41 'c/ppb_messaging.h', | 42 'c/ppb_messaging.h', |
42 'c/ppb_url_loader.h', | 43 'c/ppb_url_loader.h', |
43 'c/ppb_url_request_info.h', | 44 'c/ppb_url_request_info.h', |
44 'c/ppb_url_response_info.h', | 45 'c/ppb_url_response_info.h', |
45 'c/ppb_var.h', | 46 'c/ppb_var.h', |
46 'c/ppp.h', | 47 'c/ppp.h', |
| 48 'c/ppp_input_event.h', |
47 'c/ppp_instance.h', | 49 'c/ppp_instance.h', |
48 'c/ppp_messaging.h', | 50 'c/ppp_messaging.h', |
49 | 51 |
50 # Dev interfaces. | 52 # Dev interfaces. |
51 'c/dev/pp_cursor_type_dev.h', | 53 'c/dev/pp_cursor_type_dev.h', |
52 'c/dev/pp_file_info_dev.h', | 54 'c/dev/pp_file_info_dev.h', |
53 'c/dev/pp_graphics_3d_dev.h', | 55 'c/dev/pp_graphics_3d_dev.h', |
54 'c/dev/pp_video_dev.h', | 56 'c/dev/pp_video_dev.h', |
55 'c/dev/ppb_buffer_dev.h', | 57 'c/dev/ppb_buffer_dev.h', |
56 'c/dev/ppb_char_set_dev.h', | 58 'c/dev/ppb_char_set_dev.h', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 'cpp/file_io.cc', | 142 'cpp/file_io.cc', |
141 'cpp/file_io.h', | 143 'cpp/file_io.h', |
142 'cpp/file_ref.cc', | 144 'cpp/file_ref.cc', |
143 'cpp/file_ref.h', | 145 'cpp/file_ref.h', |
144 'cpp/file_system.cc', | 146 'cpp/file_system.cc', |
145 'cpp/file_system.h', | 147 'cpp/file_system.h', |
146 'cpp/graphics_2d.cc', | 148 'cpp/graphics_2d.cc', |
147 'cpp/graphics_2d.h', | 149 'cpp/graphics_2d.h', |
148 'cpp/image_data.cc', | 150 'cpp/image_data.cc', |
149 'cpp/image_data.h', | 151 'cpp/image_data.h', |
| 152 'cpp/input_event.cc', |
| 153 'cpp/input_event.h', |
150 'cpp/instance.cc', | 154 'cpp/instance.cc', |
151 'cpp/instance.h', | 155 'cpp/instance.h', |
152 'cpp/logging.h', | 156 'cpp/logging.h', |
153 'cpp/module.cc', | 157 'cpp/module.cc', |
154 'cpp/module.h', | 158 'cpp/module.h', |
155 'cpp/module_impl.h', | 159 'cpp/module_impl.h', |
156 'cpp/non_thread_safe_ref_count.h', | 160 'cpp/non_thread_safe_ref_count.h', |
157 'cpp/paint_aggregator.cc', | 161 'cpp/paint_aggregator.cc', |
158 'cpp/paint_aggregator.h', | 162 'cpp/paint_aggregator.h', |
159 'cpp/paint_manager.cc', | 163 'cpp/paint_manager.cc', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 }], | 279 }], |
276 ['OS=="mac"', { | 280 ['OS=="mac"', { |
277 'xcode_settings': { | 281 'xcode_settings': { |
278 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 282 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
279 }, | 283 }, |
280 }] | 284 }] |
281 ], | 285 ], |
282 }, | 286 }, |
283 ], | 287 ], |
284 } | 288 } |
OLD | NEW |