OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'c_source_files': [ | 7 'c_source_files': [ |
8 'c/pp_array_output.h', | 8 'c/pp_array_output.h', |
9 'c/pp_bool.h', | 9 'c/pp_bool.h', |
10 'c/pp_completion_callback.h', | 10 'c/pp_completion_callback.h', |
11 'c/pp_errors.h', | 11 'c/pp_errors.h', |
12 'c/pp_file_info.h', | 12 'c/pp_file_info.h', |
13 'c/pp_graphics_3d.h', | 13 'c/pp_graphics_3d.h', |
14 'c/pp_input_event.h', | 14 'c/pp_input_event.h', |
15 'c/pp_instance.h', | 15 'c/pp_instance.h', |
16 'c/pp_macros.h', | 16 'c/pp_macros.h', |
17 'c/pp_module.h', | 17 'c/pp_module.h', |
18 'c/pp_point.h', | 18 'c/pp_point.h', |
19 'c/pp_rect.h', | 19 'c/pp_rect.h', |
20 'c/pp_resource.h', | 20 'c/pp_resource.h', |
21 'c/pp_size.h', | 21 'c/pp_size.h', |
22 'c/pp_stdint.h', | 22 'c/pp_stdint.h', |
23 'c/pp_time.h', | 23 'c/pp_time.h', |
24 'c/pp_touch_point.h', | 24 'c/pp_touch_point.h', |
25 'c/pp_var.h', | 25 'c/pp_var.h', |
26 'c/ppb.h', | 26 'c/ppb.h', |
27 'c/ppb_audio.h', | 27 'c/ppb_audio.h', |
28 'c/ppb_audio_config.h', | 28 'c/ppb_audio_config.h', |
29 'c/ppb_audio_frame.h', | 29 'c/ppb_audio_buffer.h', |
yzshen1
2014/02/07 20:16:53
reorder, please.
Peng
2014/02/07 20:43:34
Done.
| |
30 'c/ppb_console.h', | 30 'c/ppb_console.h', |
31 'c/ppb_core.h', | 31 'c/ppb_core.h', |
32 'c/ppb_file_io.h', | 32 'c/ppb_file_io.h', |
33 'c/ppb_file_mapping.h', | 33 'c/ppb_file_mapping.h', |
34 'c/ppb_file_ref.h', | 34 'c/ppb_file_ref.h', |
35 'c/ppb_file_system.h', | 35 'c/ppb_file_system.h', |
36 'c/ppb_fullscreen.h', | 36 'c/ppb_fullscreen.h', |
37 'c/ppb_gamepad.h', | 37 'c/ppb_gamepad.h', |
38 'c/ppb_graphics_2d.h', | 38 'c/ppb_graphics_2d.h', |
39 'c/ppb_graphics_3d.h', | 39 'c/ppb_graphics_3d.h', |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
152 # Extensions dev interfaces. | 152 # Extensions dev interfaces. |
153 'c/extensions/dev/ppb_ext_socket_dev.h', | 153 'c/extensions/dev/ppb_ext_socket_dev.h', |
154 ], | 154 ], |
155 'cpp_source_files': [ | 155 'cpp_source_files': [ |
156 'cpp/array_output.cc', | 156 'cpp/array_output.cc', |
157 'cpp/array_output.h', | 157 'cpp/array_output.h', |
158 'cpp/audio.cc', | 158 'cpp/audio.cc', |
159 'cpp/audio.h', | 159 'cpp/audio.h', |
160 'cpp/audio_config.cc', | 160 'cpp/audio_config.cc', |
161 'cpp/audio_config.h', | 161 'cpp/audio_config.h', |
162 'cpp/audio_frame.cc', | 162 'cpp/audio_buffer.cc', |
yzshen1
2014/02/07 20:16:53
ditto
Peng
2014/02/07 20:43:34
Done.
| |
163 'cpp/audio_frame.h', | 163 'cpp/audio_buffer.h', |
164 'cpp/completion_callback.h', | 164 'cpp/completion_callback.h', |
165 'cpp/core.cc', | 165 'cpp/core.cc', |
166 'cpp/core.h', | 166 'cpp/core.h', |
167 'cpp/directory_entry.cc', | 167 'cpp/directory_entry.cc', |
168 'cpp/directory_entry.h', | 168 'cpp/directory_entry.h', |
169 'cpp/file_io.cc', | 169 'cpp/file_io.cc', |
170 'cpp/file_io.h', | 170 'cpp/file_io.h', |
171 'cpp/file_ref.cc', | 171 'cpp/file_ref.cc', |
172 'cpp/file_ref.h', | 172 'cpp/file_ref.h', |
173 'cpp/file_system.cc', | 173 'cpp/file_system.cc', |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
586 'tests/test_x509_certificate_private.h', | 586 'tests/test_x509_certificate_private.h', |
587 | 587 |
588 # Deprecated test cases. | 588 # Deprecated test cases. |
589 'tests/test_instance_deprecated.cc', | 589 'tests/test_instance_deprecated.cc', |
590 'tests/test_instance_deprecated.h', | 590 'tests/test_instance_deprecated.h', |
591 'tests/test_var_deprecated.cc', | 591 'tests/test_var_deprecated.cc', |
592 'tests/test_var_deprecated.h', | 592 'tests/test_var_deprecated.h', |
593 ], | 593 ], |
594 }, | 594 }, |
595 } | 595 } |
OLD | NEW |