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', |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 'c/trusted/ppb_file_chooser_trusted.h', | 131 'c/trusted/ppb_file_chooser_trusted.h', |
132 'c/trusted/ppb_file_io_trusted.h', | 132 'c/trusted/ppb_file_io_trusted.h', |
133 'c/trusted/ppb_graphics_3d_trusted.h', | 133 'c/trusted/ppb_graphics_3d_trusted.h', |
134 'c/trusted/ppb_image_data_trusted.h', | 134 'c/trusted/ppb_image_data_trusted.h', |
135 'c/trusted/ppb_url_loader_trusted.h', | 135 'c/trusted/ppb_url_loader_trusted.h', |
136 'c/trusted/ppp_broker.h', | 136 'c/trusted/ppp_broker.h', |
137 | 137 |
138 # Extensions dev interfaces. | 138 # Extensions dev interfaces. |
139 'c/extensions/dev/ppb_ext_alarms_dev.h', | 139 'c/extensions/dev/ppb_ext_alarms_dev.h', |
140 'c/extensions/dev/ppb_ext_events_dev.h', | 140 'c/extensions/dev/ppb_ext_events_dev.h', |
| 141 'c/extensions/dev/ppb_ext_socket_dev.h', |
141 ], | 142 ], |
142 'cpp_source_files': [ | 143 'cpp_source_files': [ |
143 'cpp/array_output.cc', | 144 'cpp/array_output.cc', |
144 'cpp/array_output.h', | 145 'cpp/array_output.h', |
145 'cpp/audio.cc', | 146 'cpp/audio.cc', |
146 'cpp/audio.h', | 147 'cpp/audio.h', |
147 'cpp/audio_config.cc', | 148 'cpp/audio_config.cc', |
148 'cpp/audio_config.h', | 149 'cpp/audio_config.h', |
149 'cpp/completion_callback.h', | 150 'cpp/completion_callback.h', |
150 'cpp/core.cc', | 151 'cpp/core.cc', |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 'cpp/extensions/ext_output_traits.h', | 330 'cpp/extensions/ext_output_traits.h', |
330 'cpp/extensions/from_var_converter.h', | 331 'cpp/extensions/from_var_converter.h', |
331 'cpp/extensions/optional.h', | 332 'cpp/extensions/optional.h', |
332 'cpp/extensions/to_var_converter.h', | 333 'cpp/extensions/to_var_converter.h', |
333 | 334 |
334 # Extensions dev interfaces. | 335 # Extensions dev interfaces. |
335 'cpp/extensions/dev/alarms_dev.cc', | 336 'cpp/extensions/dev/alarms_dev.cc', |
336 'cpp/extensions/dev/alarms_dev.h', | 337 'cpp/extensions/dev/alarms_dev.h', |
337 'cpp/extensions/dev/events_dev.cc', | 338 'cpp/extensions/dev/events_dev.cc', |
338 'cpp/extensions/dev/events_dev.h', | 339 'cpp/extensions/dev/events_dev.h', |
| 340 'cpp/extensions/dev/socket_dev.cc', |
| 341 'cpp/extensions/dev/socket_dev.h', |
339 | 342 |
340 # Utility sources. | 343 # Utility sources. |
341 'utility/completion_callback_factory.h', | 344 'utility/completion_callback_factory.h', |
342 'utility/completion_callback_factory_thread_traits.h', | 345 'utility/completion_callback_factory_thread_traits.h', |
343 'utility/graphics/paint_aggregator.cc', | 346 'utility/graphics/paint_aggregator.cc', |
344 'utility/graphics/paint_aggregator.h', | 347 'utility/graphics/paint_aggregator.h', |
345 'utility/graphics/paint_manager.cc', | 348 'utility/graphics/paint_manager.cc', |
346 'utility/graphics/paint_manager.h', | 349 'utility/graphics/paint_manager.h', |
347 'utility/private/network_list_observer_private.cc', | 350 'utility/private/network_list_observer_private.cc', |
348 'utility/private/network_list_observer_private.h', | 351 'utility/private/network_list_observer_private.h', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 'tests/test_x509_certificate_private.h', | 509 'tests/test_x509_certificate_private.h', |
507 | 510 |
508 # Deprecated test cases. | 511 # Deprecated test cases. |
509 'tests/test_instance_deprecated.cc', | 512 'tests/test_instance_deprecated.cc', |
510 'tests/test_instance_deprecated.h', | 513 'tests/test_instance_deprecated.h', |
511 'tests/test_var_deprecated.cc', | 514 'tests/test_var_deprecated.cc', |
512 'tests/test_var_deprecated.h', | 515 'tests/test_var_deprecated.h', |
513 ], | 516 ], |
514 }, | 517 }, |
515 } | 518 } |
OLD | NEW |