Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 8975001: Pepper: Change '*_sources' variables in ppapi_sources.gypi to '*_source_files'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: argh Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/ppapi_cpp.gypi ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_sources': [ 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',
11 'c/pp_file_info.h', 11 'c/pp_file_info.h',
12 'c/pp_graphics_3d.h', 12 'c/pp_graphics_3d.h',
13 'c/pp_input_event.h', 13 'c/pp_input_event.h',
14 'c/pp_instance.h', 14 'c/pp_instance.h',
15 'c/pp_macros.h', 15 'c/pp_macros.h',
16 'c/pp_module.h', 16 'c/pp_module.h',
17 'c/pp_point.h', 17 'c/pp_point.h',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'c/trusted/ppb_audio_trusted.h', 108 'c/trusted/ppb_audio_trusted.h',
109 'c/trusted/ppb_broker_trusted.h', 109 'c/trusted/ppb_broker_trusted.h',
110 'c/trusted/ppb_buffer_trusted.h', 110 'c/trusted/ppb_buffer_trusted.h',
111 'c/trusted/ppb_file_chooser_trusted.h', 111 'c/trusted/ppb_file_chooser_trusted.h',
112 'c/trusted/ppb_file_io_trusted.h', 112 'c/trusted/ppb_file_io_trusted.h',
113 'c/trusted/ppb_graphics_3d_trusted.h', 113 'c/trusted/ppb_graphics_3d_trusted.h',
114 'c/trusted/ppb_image_data_trusted.h', 114 'c/trusted/ppb_image_data_trusted.h',
115 'c/trusted/ppb_url_loader_trusted.h', 115 'c/trusted/ppb_url_loader_trusted.h',
116 'c/trusted/ppp_broker.h', 116 'c/trusted/ppp_broker.h',
117 ], 117 ],
118 'cpp_sources': [ 118 'cpp_source_files': [
119 'cpp/audio.cc', 119 'cpp/audio.cc',
120 'cpp/audio.h', 120 'cpp/audio.h',
121 'cpp/audio_config.cc', 121 'cpp/audio_config.cc',
122 'cpp/audio_config.h', 122 'cpp/audio_config.h',
123 'cpp/completion_callback.cc', 123 'cpp/completion_callback.cc',
124 'cpp/completion_callback.h', 124 'cpp/completion_callback.h',
125 'cpp/core.cc', 125 'cpp/core.cc',
126 'cpp/core.h', 126 'cpp/core.h',
127 'cpp/file_io.cc', 127 'cpp/file_io.cc',
128 'cpp/file_io.h', 128 'cpp/file_io.h',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'cpp/private/var_private.cc', 240 'cpp/private/var_private.cc',
241 'cpp/private/var_private.h', 241 'cpp/private/var_private.h',
242 242
243 # Trusted interfaces. 243 # Trusted interfaces.
244 'cpp/trusted/file_chooser_trusted.cc', 244 'cpp/trusted/file_chooser_trusted.cc',
245 'cpp/trusted/file_chooser_trusted.h', 245 'cpp/trusted/file_chooser_trusted.h',
246 ], 246 ],
247 # 247 #
248 # Common Testing source for trusted and untrusted (NaCl) pugins. 248 # Common Testing source for trusted and untrusted (NaCl) pugins.
249 # 249 #
250 'test_sources_common': [ 250 'test_common_source_files': [
251 # Common test files 251 # Common test files
252 'tests/all_c_includes.h', 252 'tests/all_c_includes.h',
253 'tests/all_cpp_includes.h', 253 'tests/all_cpp_includes.h',
254 'tests/arch_dependent_sizes_32.h', 254 'tests/arch_dependent_sizes_32.h',
255 'tests/arch_dependent_sizes_64.h', 255 'tests/arch_dependent_sizes_64.h',
256 'tests/pp_thread.h', 256 'tests/pp_thread.h',
257 'tests/test_case.cc', 257 'tests/test_case.cc',
258 'tests/test_case.h', 258 'tests/test_case.h',
259 'tests/test_tcp_socket_private_shared.cc', 259 'tests/test_tcp_socket_private_shared.cc',
260 'tests/test_tcp_socket_private_shared.h', 260 'tests/test_tcp_socket_private_shared.h',
261 'tests/test_udp_socket_private_shared.cc', 261 'tests/test_udp_socket_private_shared.cc',
262 'tests/test_udp_socket_private_shared.h', 262 'tests/test_udp_socket_private_shared.h',
263 'tests/test_utils.cc', 263 'tests/test_utils.cc',
264 'tests/testing_instance.cc', 264 'tests/testing_instance.cc',
265 'tests/testing_instance.h', 265 'tests/testing_instance.h',
266 266
267 # Compile-time tests 267 # Compile-time tests
268 'tests/test_c_includes.c', 268 'tests/test_c_includes.c',
269 'tests/test_cpp_includes.cc', 269 'tests/test_cpp_includes.cc',
270 'tests/test_struct_sizes.c', 270 'tests/test_struct_sizes.c',
271 ], 271 ],
272 # 272 #
273 # Sources used in NaCl tests. 273 # Sources used in NaCl tests.
274 # 274 #
275 'test_sources_nacl': [ 275 'test_nacl_source_files': [
276 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) 276 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER)
277 'tests/test_audio_config.cc', 277 'tests/test_audio_config.cc',
278 'tests/test_cursor_control.cc', 278 'tests/test_cursor_control.cc',
279 'tests/test_directory_reader.cc', 279 'tests/test_directory_reader.cc',
280 'tests/test_file_io.cc', 280 'tests/test_file_io.cc',
281 'tests/test_file_ref.cc', 281 'tests/test_file_ref.cc',
282 'tests/test_file_system.cc', 282 'tests/test_file_system.cc',
283 'tests/test_memory.cc', 283 'tests/test_memory.cc',
284 'tests/test_graphics_2d.cc', 284 'tests/test_graphics_2d.cc',
285 'tests/test_image_data.cc', 285 'tests/test_image_data.cc',
286 'tests/test_paint_aggregator.cc', 286 'tests/test_paint_aggregator.cc',
287 'tests/test_scrollbar.cc', 287 'tests/test_scrollbar.cc',
288 'tests/test_url_loader.cc', 288 'tests/test_url_loader.cc',
289 'tests/test_var.cc', 289 'tests/test_var.cc',
290 ], 290 ],
291 # 291 #
292 # Sources used in trusted tests. 292 # Sources used in trusted tests.
293 # 293 #
294 'test_sources_trusted': [ 294 'test_trusted_source_files': [
295 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) 295 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER)
296 'tests/test_audio.cc', 296 'tests/test_audio.cc',
297 'tests/test_audio.h', 297 'tests/test_audio.h',
298 'tests/test_audio_config.cc', 298 'tests/test_audio_config.cc',
299 'tests/test_audio_config.h', 299 'tests/test_audio_config.h',
300 'tests/test_broker.cc', 300 'tests/test_broker.cc',
301 'tests/test_broker.h', 301 'tests/test_broker.h',
302 'tests/test_buffer.cc', 302 'tests/test_buffer.cc',
303 'tests/test_buffer.h', 303 'tests/test_buffer.h',
304 'tests/test_c_includes.c', 304 'tests/test_c_includes.c',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 # Deprecated test cases. 366 # Deprecated test cases.
367 'tests/test_instance_deprecated.cc', 367 'tests/test_instance_deprecated.cc',
368 'tests/test_instance_deprecated.h', 368 'tests/test_instance_deprecated.h',
369 'tests/test_var_deprecated.cc', 369 'tests/test_var_deprecated.cc',
370 'tests/test_var_deprecated.h', 370 'tests/test_var_deprecated.h',
371 ], 371 ],
372 }, 372 },
373 'conditions': [ 373 'conditions': [
374 ['p2p_apis==1', { 374 ['p2p_apis==1', {
375 'variables': { 375 'variables': {
376 'c_sources': [ 376 'c_source_files': [
377 'c/dev/ppb_transport_dev.h', 377 'c/dev/ppb_transport_dev.h',
378 ], 378 ],
379 'cpp_sources': [ 379 'cpp_source_files': [
380 'cpp/dev/transport_dev.cc', 380 'cpp/dev/transport_dev.cc',
381 'cpp/dev/transport_dev.h', 381 'cpp/dev/transport_dev.h',
382 ], 382 ],
383 }, 383 },
384 }], 384 }],
385 ], 385 ],
386 } 386 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_cpp.gypi ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698