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<(nacl_ppapi_library_suffix)', | 8 'target_name': 'ppapi_c<(nacl_ppapi_library_suffix)', |
9 'type': 'none', | 9 'type': 'none', |
10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
(...skipping 18 matching lines...) Expand all Loading... |
29 'c/pp_stdint.h', | 29 'c/pp_stdint.h', |
30 'c/pp_time.h', | 30 'c/pp_time.h', |
31 'c/pp_var.h', | 31 'c/pp_var.h', |
32 'c/ppb.h', | 32 'c/ppb.h', |
33 'c/ppb_audio.h', | 33 'c/ppb_audio.h', |
34 'c/ppb_audio_config.h', | 34 'c/ppb_audio_config.h', |
35 'c/ppb_core.h', | 35 'c/ppb_core.h', |
36 'c/ppb_file_io.h', | 36 'c/ppb_file_io.h', |
37 'c/ppb_file_ref.h', | 37 'c/ppb_file_ref.h', |
38 'c/ppb_file_system.h', | 38 'c/ppb_file_system.h', |
| 39 'c/ppb_fullscreen.h', |
39 'c/ppb_graphics_2d.h', | 40 'c/ppb_graphics_2d.h', |
40 'c/ppb_graphics_3d.h', | 41 'c/ppb_graphics_3d.h', |
41 'c/ppb_image_data.h', | 42 'c/ppb_image_data.h', |
42 'c/ppb_input_event.h', | 43 'c/ppb_input_event.h', |
43 'c/ppb_instance.h', | 44 'c/ppb_instance.h', |
44 'c/ppb_messaging.h', | 45 'c/ppb_messaging.h', |
45 'c/ppb_opengles2.h', | 46 'c/ppb_opengles2.h', |
46 'c/ppb_url_loader.h', | 47 'c/ppb_url_loader.h', |
47 'c/ppb_url_request_info.h', | 48 'c/ppb_url_request_info.h', |
48 'c/ppb_url_response_info.h', | 49 'c/ppb_url_response_info.h', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'cpp/completion_callback.cc', | 149 'cpp/completion_callback.cc', |
149 'cpp/completion_callback.h', | 150 'cpp/completion_callback.h', |
150 'cpp/core.cc', | 151 'cpp/core.cc', |
151 'cpp/core.h', | 152 'cpp/core.h', |
152 'cpp/file_io.cc', | 153 'cpp/file_io.cc', |
153 'cpp/file_io.h', | 154 'cpp/file_io.h', |
154 'cpp/file_ref.cc', | 155 'cpp/file_ref.cc', |
155 'cpp/file_ref.h', | 156 'cpp/file_ref.h', |
156 'cpp/file_system.cc', | 157 'cpp/file_system.cc', |
157 'cpp/file_system.h', | 158 'cpp/file_system.h', |
| 159 'cpp/fullscreen.cc', |
| 160 'cpp/fullscreen.h', |
158 'cpp/graphics_2d.cc', | 161 'cpp/graphics_2d.cc', |
159 'cpp/graphics_2d.h', | 162 'cpp/graphics_2d.h', |
160 'cpp/graphics_3d.cc', | 163 'cpp/graphics_3d.cc', |
161 'cpp/graphics_3d.h', | 164 'cpp/graphics_3d.h', |
162 'cpp/graphics_3d_client.cc', | 165 'cpp/graphics_3d_client.cc', |
163 'cpp/graphics_3d_client.h', | 166 'cpp/graphics_3d_client.h', |
164 'cpp/image_data.cc', | 167 'cpp/image_data.cc', |
165 'cpp/image_data.h', | 168 'cpp/image_data.h', |
166 'cpp/input_event.cc', | 169 'cpp/input_event.cc', |
167 'cpp/input_event.h', | 170 'cpp/input_event.h', |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 }], | 304 }], |
302 ['OS=="mac"', { | 305 ['OS=="mac"', { |
303 'xcode_settings': { | 306 'xcode_settings': { |
304 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 307 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
305 }, | 308 }, |
306 }] | 309 }] |
307 ], | 310 ], |
308 }, | 311 }, |
309 ], | 312 ], |
310 } | 313 } |
OLD | NEW |