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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'cpp/input_event.cc', | 144 'cpp/input_event.cc', |
145 'cpp/input_event.h', | 145 'cpp/input_event.h', |
146 'cpp/instance.cc', | 146 'cpp/instance.cc', |
147 'cpp/instance.h', | 147 'cpp/instance.h', |
148 'cpp/logging.h', | 148 'cpp/logging.h', |
149 'cpp/module.cc', | 149 'cpp/module.cc', |
150 'cpp/module.h', | 150 'cpp/module.h', |
151 'cpp/module_impl.h', | 151 'cpp/module_impl.h', |
152 'cpp/mouse_lock.cc', | 152 'cpp/mouse_lock.cc', |
153 'cpp/mouse_lock.h', | 153 'cpp/mouse_lock.h', |
154 'cpp/non_thread_safe_ref_count.h', | |
155 'cpp/paint_aggregator.cc', | |
156 'cpp/paint_aggregator.h', | |
157 'cpp/paint_manager.cc', | |
158 'cpp/paint_manager.h', | |
159 'cpp/point.h', | 154 'cpp/point.h', |
160 'cpp/rect.cc', | 155 'cpp/rect.cc', |
161 'cpp/rect.h', | 156 'cpp/rect.h', |
162 'cpp/resource.cc', | 157 'cpp/resource.cc', |
163 'cpp/resource.h', | 158 'cpp/resource.h', |
164 'cpp/size.h', | 159 'cpp/size.h', |
165 'cpp/url_loader.cc', | 160 'cpp/url_loader.cc', |
166 'cpp/url_loader.h', | 161 'cpp/url_loader.h', |
167 'cpp/url_request_info.cc', | 162 'cpp/url_request_info.cc', |
168 'cpp/url_request_info.h', | 163 'cpp/url_request_info.h', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 'cpp/private/udp_socket_private.cc', | 240 'cpp/private/udp_socket_private.cc', |
246 'cpp/private/udp_socket_private.h', | 241 'cpp/private/udp_socket_private.h', |
247 'cpp/private/var_private.cc', | 242 'cpp/private/var_private.cc', |
248 'cpp/private/var_private.h', | 243 'cpp/private/var_private.h', |
249 | 244 |
250 # Trusted interfaces. | 245 # Trusted interfaces. |
251 'cpp/trusted/file_chooser_trusted.cc', | 246 'cpp/trusted/file_chooser_trusted.cc', |
252 'cpp/trusted/file_chooser_trusted.h', | 247 'cpp/trusted/file_chooser_trusted.h', |
253 'cpp/trusted/file_io_trusted.cc', | 248 'cpp/trusted/file_io_trusted.cc', |
254 'cpp/trusted/file_io_trusted.h', | 249 'cpp/trusted/file_io_trusted.h', |
| 250 |
| 251 # Utility sources. |
| 252 'utility/completion_callback_factory.h', |
| 253 'utility/non_thread_safe_ref_count.h', |
| 254 'utility/graphics/paint_aggregator.cc', |
| 255 'utility/graphics/paint_aggregator.h', |
| 256 'utility/graphics/paint_manager.cc', |
| 257 'utility/graphics/paint_manager.h', |
255 ], | 258 ], |
256 # | 259 # |
257 # Common Testing source for trusted and untrusted (NaCl) pugins. | 260 # Common Testing source for trusted and untrusted (NaCl) pugins. |
258 # | 261 # |
259 'test_common_source_files': [ | 262 'test_common_source_files': [ |
260 # Common test files | 263 # Common test files |
261 'tests/all_c_includes.h', | 264 'tests/all_c_includes.h', |
262 'tests/all_cpp_includes.h', | 265 'tests/all_cpp_includes.h', |
263 'tests/arch_dependent_sizes_32.h', | 266 'tests/arch_dependent_sizes_32.h', |
264 'tests/arch_dependent_sizes_64.h', | 267 'tests/arch_dependent_sizes_64.h', |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 'c/dev/ppb_transport_dev.h', | 397 'c/dev/ppb_transport_dev.h', |
395 ], | 398 ], |
396 'cpp_source_files': [ | 399 'cpp_source_files': [ |
397 'cpp/dev/transport_dev.cc', | 400 'cpp/dev/transport_dev.cc', |
398 'cpp/dev/transport_dev.h', | 401 'cpp/dev/transport_dev.h', |
399 ], | 402 ], |
400 }, | 403 }, |
401 }], | 404 }], |
402 ], | 405 ], |
403 } | 406 } |
OLD | NEW |