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 'variables': { | 6 'variables': { |
7 'c_source_files': [ | 7 'c_source_files': [ |
8 'c/pp_bool.h', | 8 'c/pp_bool.h', |
9 'c/pp_completion_callback.h', | 9 'c/pp_completion_callback.h', |
10 'c/pp_errors.h', | 10 'c/pp_errors.h', |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'cpp/input_event.cc', | 143 'cpp/input_event.cc', |
144 'cpp/input_event.h', | 144 'cpp/input_event.h', |
145 'cpp/instance.cc', | 145 'cpp/instance.cc', |
146 'cpp/instance.h', | 146 'cpp/instance.h', |
147 'cpp/logging.h', | 147 'cpp/logging.h', |
148 'cpp/module.cc', | 148 'cpp/module.cc', |
149 'cpp/module.h', | 149 'cpp/module.h', |
150 'cpp/module_impl.h', | 150 'cpp/module_impl.h', |
151 'cpp/mouse_lock.cc', | 151 'cpp/mouse_lock.cc', |
152 'cpp/mouse_lock.h', | 152 'cpp/mouse_lock.h', |
153 'cpp/non_thread_safe_ref_count.h', | |
154 'cpp/paint_aggregator.cc', | |
155 'cpp/paint_aggregator.h', | |
156 'cpp/paint_manager.cc', | |
157 'cpp/paint_manager.h', | |
158 'cpp/point.h', | 153 'cpp/point.h', |
159 'cpp/rect.cc', | 154 'cpp/rect.cc', |
160 'cpp/rect.h', | 155 'cpp/rect.h', |
161 'cpp/resource.cc', | 156 'cpp/resource.cc', |
162 'cpp/resource.h', | 157 'cpp/resource.h', |
163 'cpp/size.h', | 158 'cpp/size.h', |
164 'cpp/url_loader.cc', | 159 'cpp/url_loader.cc', |
165 'cpp/url_loader.h', | 160 'cpp/url_loader.h', |
166 'cpp/url_request_info.cc', | 161 'cpp/url_request_info.cc', |
167 'cpp/url_request_info.h', | 162 'cpp/url_request_info.h', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 'cpp/private/udp_socket_private.cc', | 237 'cpp/private/udp_socket_private.cc', |
243 'cpp/private/udp_socket_private.h', | 238 'cpp/private/udp_socket_private.h', |
244 'cpp/private/var_private.cc', | 239 'cpp/private/var_private.cc', |
245 'cpp/private/var_private.h', | 240 'cpp/private/var_private.h', |
246 | 241 |
247 # Trusted interfaces. | 242 # Trusted interfaces. |
248 'cpp/trusted/file_chooser_trusted.cc', | 243 'cpp/trusted/file_chooser_trusted.cc', |
249 'cpp/trusted/file_chooser_trusted.h', | 244 'cpp/trusted/file_chooser_trusted.h', |
250 'cpp/trusted/file_io_trusted.cc', | 245 'cpp/trusted/file_io_trusted.cc', |
251 'cpp/trusted/file_io_trusted.h', | 246 'cpp/trusted/file_io_trusted.h', |
| 247 |
| 248 # Utility sources. |
| 249 'utility/completion_callback_factory.h', |
| 250 'utility/non_thread_safe_ref_count.h', |
| 251 'utility/graphics/paint_aggregator.cc', |
| 252 'utility/graphics/paint_aggregator.h', |
| 253 'utility/graphics/paint_manager.cc', |
| 254 'utility/graphics/paint_manager.h', |
252 ], | 255 ], |
253 # | 256 # |
254 # Common Testing source for trusted and untrusted (NaCl) pugins. | 257 # Common Testing source for trusted and untrusted (NaCl) pugins. |
255 # | 258 # |
256 'test_common_source_files': [ | 259 'test_common_source_files': [ |
257 # Common test files | 260 # Common test files |
258 'tests/all_c_includes.h', | 261 'tests/all_c_includes.h', |
259 'tests/all_cpp_includes.h', | 262 'tests/all_cpp_includes.h', |
260 'tests/arch_dependent_sizes_32.h', | 263 'tests/arch_dependent_sizes_32.h', |
261 'tests/arch_dependent_sizes_64.h', | 264 'tests/arch_dependent_sizes_64.h', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 'c/dev/ppb_transport_dev.h', | 391 'c/dev/ppb_transport_dev.h', |
389 ], | 392 ], |
390 'cpp_source_files': [ | 393 'cpp_source_files': [ |
391 'cpp/dev/transport_dev.cc', | 394 'cpp/dev/transport_dev.cc', |
392 'cpp/dev/transport_dev.h', | 395 'cpp/dev/transport_dev.h', |
393 ], | 396 ], |
394 }, | 397 }, |
395 }], | 398 }], |
396 ], | 399 ], |
397 } | 400 } |
OLD | NEW |