| 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', |
| 154 'cpp/point.h', | 159 'cpp/point.h', |
| 155 'cpp/rect.cc', | 160 'cpp/rect.cc', |
| 156 'cpp/rect.h', | 161 'cpp/rect.h', |
| 157 'cpp/resource.cc', | 162 'cpp/resource.cc', |
| 158 'cpp/resource.h', | 163 'cpp/resource.h', |
| 159 'cpp/size.h', | 164 'cpp/size.h', |
| 160 'cpp/url_loader.cc', | 165 'cpp/url_loader.cc', |
| 161 'cpp/url_loader.h', | 166 'cpp/url_loader.h', |
| 162 'cpp/url_request_info.cc', | 167 'cpp/url_request_info.cc', |
| 163 'cpp/url_request_info.h', | 168 'cpp/url_request_info.h', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 'cpp/private/udp_socket_private.cc', | 245 'cpp/private/udp_socket_private.cc', |
| 241 'cpp/private/udp_socket_private.h', | 246 'cpp/private/udp_socket_private.h', |
| 242 'cpp/private/var_private.cc', | 247 'cpp/private/var_private.cc', |
| 243 'cpp/private/var_private.h', | 248 'cpp/private/var_private.h', |
| 244 | 249 |
| 245 # Trusted interfaces. | 250 # Trusted interfaces. |
| 246 'cpp/trusted/file_chooser_trusted.cc', | 251 'cpp/trusted/file_chooser_trusted.cc', |
| 247 'cpp/trusted/file_chooser_trusted.h', | 252 'cpp/trusted/file_chooser_trusted.h', |
| 248 'cpp/trusted/file_io_trusted.cc', | 253 'cpp/trusted/file_io_trusted.cc', |
| 249 'cpp/trusted/file_io_trusted.h', | 254 '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', | |
| 258 ], | 255 ], |
| 259 # | 256 # |
| 260 # Common Testing source for trusted and untrusted (NaCl) pugins. | 257 # Common Testing source for trusted and untrusted (NaCl) pugins. |
| 261 # | 258 # |
| 262 'test_common_source_files': [ | 259 'test_common_source_files': [ |
| 263 # Common test files | 260 # Common test files |
| 264 'tests/all_c_includes.h', | 261 'tests/all_c_includes.h', |
| 265 'tests/all_cpp_includes.h', | 262 'tests/all_cpp_includes.h', |
| 266 'tests/arch_dependent_sizes_32.h', | 263 'tests/arch_dependent_sizes_32.h', |
| 267 '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... |
| 394 'c/dev/ppb_transport_dev.h', | 391 'c/dev/ppb_transport_dev.h', |
| 395 ], | 392 ], |
| 396 'cpp_source_files': [ | 393 'cpp_source_files': [ |
| 397 'cpp/dev/transport_dev.cc', | 394 'cpp/dev/transport_dev.cc', |
| 398 'cpp/dev/transport_dev.h', | 395 'cpp/dev/transport_dev.h', |
| 399 ], | 396 ], |
| 400 }, | 397 }, |
| 401 }], | 398 }], |
| 402 ], | 399 ], |
| 403 } | 400 } |
| OLD | NEW |