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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 # | 305 # |
306 # Common Testing source for trusted and untrusted (NaCl) pugins. | 306 # Common Testing source for trusted and untrusted (NaCl) pugins. |
307 # | 307 # |
308 'test_common_source_files': [ | 308 'test_common_source_files': [ |
309 # Common test files | 309 # Common test files |
310 'tests/all_c_includes.h', | 310 'tests/all_c_includes.h', |
311 'tests/all_cpp_includes.h', | 311 'tests/all_cpp_includes.h', |
312 'tests/arch_dependent_sizes_32.h', | 312 'tests/arch_dependent_sizes_32.h', |
313 'tests/arch_dependent_sizes_64.h', | 313 'tests/arch_dependent_sizes_64.h', |
314 'tests/pp_thread.h', | 314 'tests/pp_thread.h', |
| 315 'tests/test_audio_config.cc', |
| 316 'tests/test_audio_config.h', |
315 'tests/test_case.cc', | 317 'tests/test_case.cc', |
316 'tests/test_case.h', | 318 'tests/test_case.h', |
| 319 'tests/test_cursor_control.cc', |
| 320 'tests/test_cursor_control.h', |
| 321 'tests/test_directory_reader.cc', |
| 322 'tests/test_directory_reader.h', |
317 'tests/test_empty.cc', | 323 'tests/test_empty.cc', |
318 'tests/test_empty.h', | 324 'tests/test_empty.h', |
| 325 'tests/test_file_io.cc', |
| 326 'tests/test_file_io.h', |
| 327 'tests/test_file_ref.cc', |
| 328 'tests/test_file_ref.h', |
| 329 'tests/test_file_system.cc', |
| 330 'tests/test_file_system.h', |
| 331 'tests/test_graphics_2d.cc', |
| 332 'tests/test_graphics_2d.h', |
319 'tests/test_host_resolver_private.cc', | 333 'tests/test_host_resolver_private.cc', |
320 'tests/test_host_resolver_private.h', | 334 'tests/test_host_resolver_private.h', |
| 335 'tests/test_image_data.cc', |
| 336 'tests/test_image_data.h', |
| 337 'tests/test_input_event.cc', |
| 338 'tests/test_input_event.h', |
| 339 'tests/test_memory.cc', |
| 340 'tests/test_memory.h', |
| 341 'tests/test_mouse_cursor.cc', |
| 342 'tests/test_mouse_cursor.h', |
321 'tests/test_net_address_private_untrusted.cc', | 343 'tests/test_net_address_private_untrusted.cc', |
322 'tests/test_net_address_private_untrusted.h', | 344 'tests/test_net_address_private_untrusted.h', |
| 345 'tests/test_paint_aggregator.cc', |
| 346 'tests/test_paint_aggregator.h', |
| 347 'tests/test_post_message.cc', |
| 348 'tests/test_post_message.h', |
| 349 'tests/test_scrollbar.cc', |
| 350 'tests/test_scrollbar.h', |
323 'tests/test_tcp_server_socket_private.cc', | 351 'tests/test_tcp_server_socket_private.cc', |
324 'tests/test_tcp_server_socket_private.h', | 352 'tests/test_tcp_server_socket_private.h', |
325 'tests/test_tcp_socket_private.cc', | 353 'tests/test_tcp_socket_private.cc', |
326 'tests/test_tcp_socket_private.h', | 354 'tests/test_tcp_socket_private.h', |
327 'tests/test_udp_socket_private.cc', | 355 'tests/test_udp_socket_private.cc', |
328 'tests/test_udp_socket_private.h', | 356 'tests/test_udp_socket_private.h', |
| 357 'tests/test_url_loader.cc', |
| 358 'tests/test_url_loader.h', |
| 359 'tests/test_url_request.cc', |
| 360 'tests/test_url_request.h', |
329 'tests/test_utils.cc', | 361 'tests/test_utils.cc', |
| 362 'tests/test_var.cc', |
| 363 'tests/test_var.h', |
| 364 'tests/test_view.cc', |
| 365 'tests/test_view.h', |
| 366 'tests/test_websocket.cc', |
| 367 'tests/test_websocket.h', |
330 'tests/testing_instance.cc', | 368 'tests/testing_instance.cc', |
331 'tests/testing_instance.h', | 369 'tests/testing_instance.h', |
332 | 370 |
333 # Compile-time tests | 371 # Compile-time tests |
334 'tests/test_c_includes.c', | 372 'tests/test_c_includes.c', |
335 'tests/test_cpp_includes.cc', | 373 'tests/test_cpp_includes.cc', |
336 'tests/test_struct_sizes.c', | 374 'tests/test_struct_sizes.c', |
337 ], | 375 ], |
338 # | 376 # |
339 # Sources used in NaCl tests. | 377 # Sources used in NaCl tests. |
340 # | 378 # |
341 'test_nacl_source_files': [ | 379 'test_nacl_source_files': [ |
342 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | 380 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
343 'tests/test_audio_config.cc', | |
344 'tests/test_cursor_control.cc', | |
345 'tests/test_directory_reader.cc', | |
346 'tests/test_file_io.cc', | |
347 'tests/test_file_ref.cc', | |
348 'tests/test_file_system.cc', | |
349 'tests/test_input_event.cc', | |
350 'tests/test_memory.cc', | |
351 'tests/test_graphics_2d.cc', | |
352 'tests/test_image_data.cc', | |
353 'tests/test_memory.cc', | |
354 'tests/test_mouse_cursor.cc', | |
355 'tests/test_paint_aggregator.cc', | |
356 'tests/test_post_message.cc', | |
357 'tests/test_scrollbar.cc', | |
358 'tests/test_tcp_server_socket_private_disallowed.cc', | 381 'tests/test_tcp_server_socket_private_disallowed.cc', |
359 'tests/test_tcp_socket_private_disallowed.cc', | 382 'tests/test_tcp_socket_private_disallowed.cc', |
360 'tests/test_udp_socket_private_disallowed.cc', | 383 'tests/test_udp_socket_private_disallowed.cc', |
361 'tests/test_url_loader.cc', | |
362 'tests/test_url_request.cc', | |
363 'tests/test_var.cc', | |
364 'tests/test_view.cc', | |
365 'tests/test_websocket.cc', | |
366 ], | 384 ], |
367 # | 385 # |
368 # Sources used in trusted tests. | 386 # Sources used in trusted tests. |
369 # | 387 # |
370 'test_trusted_source_files': [ | 388 'test_trusted_source_files': [ |
371 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | 389 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
372 'tests/test_audio.cc', | 390 'tests/test_audio.cc', |
373 'tests/test_audio.h', | 391 'tests/test_audio.h', |
374 'tests/test_audio_config.cc', | |
375 'tests/test_audio_config.h', | |
376 'tests/test_broker.cc', | 392 'tests/test_broker.cc', |
377 'tests/test_broker.h', | 393 'tests/test_broker.h', |
378 'tests/test_browser_font.cc', | 394 'tests/test_browser_font.cc', |
379 'tests/test_browser_font.h', | 395 'tests/test_browser_font.h', |
380 'tests/test_buffer.cc', | 396 'tests/test_buffer.cc', |
381 'tests/test_buffer.h', | 397 'tests/test_buffer.h', |
382 'tests/test_c_includes.c', | 398 'tests/test_c_includes.c', |
383 'tests/test_char_set.cc', | 399 'tests/test_char_set.cc', |
384 'tests/test_char_set.h', | 400 'tests/test_char_set.h', |
385 'tests/test_core.cc', | 401 'tests/test_core.cc', |
386 'tests/test_core.h', | 402 'tests/test_core.h', |
387 'tests/test_cpp_includes.cc', | 403 'tests/test_cpp_includes.cc', |
388 'tests/test_crypto.cc', | 404 'tests/test_crypto.cc', |
389 'tests/test_crypto.h', | 405 'tests/test_crypto.h', |
390 'tests/test_cursor_control.cc', | |
391 'tests/test_cursor_control.h', | |
392 'tests/test_directory_reader.cc', | |
393 'tests/test_directory_reader.h', | |
394 'tests/test_file_io.cc', | |
395 'tests/test_file_io.h', | |
396 'tests/test_file_ref.cc', | |
397 'tests/test_file_ref.h', | |
398 'tests/test_file_system.cc', | |
399 'tests/test_file_system.h', | |
400 'tests/test_flash.cc', | 406 'tests/test_flash.cc', |
401 'tests/test_flash.h', | 407 'tests/test_flash.h', |
402 'tests/test_flash_clipboard.cc', | 408 'tests/test_flash_clipboard.cc', |
403 'tests/test_flash_clipboard.h', | 409 'tests/test_flash_clipboard.h', |
404 'tests/test_flash_fullscreen.cc', | 410 'tests/test_flash_fullscreen.cc', |
405 'tests/test_flash_fullscreen.h', | 411 'tests/test_flash_fullscreen.h', |
406 'tests/test_flash_message_loop.cc', | 412 'tests/test_flash_message_loop.cc', |
407 'tests/test_flash_message_loop.h', | 413 'tests/test_flash_message_loop.h', |
408 'tests/test_fullscreen.cc', | 414 'tests/test_fullscreen.cc', |
409 'tests/test_fullscreen.h', | 415 'tests/test_fullscreen.h', |
410 'tests/test_graphics_2d.cc', | |
411 'tests/test_graphics_2d.h', | |
412 'tests/test_graphics_3d.cc', | 416 'tests/test_graphics_3d.cc', |
413 'tests/test_graphics_3d.h', | 417 'tests/test_graphics_3d.h', |
414 'tests/test_image_data.cc', | |
415 'tests/test_image_data.h', | |
416 'tests/test_input_event.cc', | |
417 'tests/test_input_event.h', | |
418 'tests/test_memory.cc', | |
419 'tests/test_memory.h', | |
420 'tests/test_mouse_cursor.cc', | |
421 'tests/test_net_address_private.cc', | 418 'tests/test_net_address_private.cc', |
422 'tests/test_net_address_private.h', | 419 'tests/test_net_address_private.h', |
423 'tests/test_network_monitor_private.cc', | 420 'tests/test_network_monitor_private.cc', |
424 'tests/test_network_monitor_private.h', | 421 'tests/test_network_monitor_private.h', |
425 'tests/test_paint_aggregator.cc', | |
426 'tests/test_paint_aggregator.h', | |
427 'tests/test_post_message.cc', | |
428 'tests/test_post_message.h', | |
429 'tests/test_resource_array.cc', | 422 'tests/test_resource_array.cc', |
430 'tests/test_resource_array.h', | 423 'tests/test_resource_array.h', |
431 'tests/test_scrollbar.cc', | |
432 'tests/test_scrollbar.h', | |
433 'tests/test_struct_sizes.c', | 424 'tests/test_struct_sizes.c', |
434 'tests/test_tcp_socket_private_trusted.cc', | 425 'tests/test_tcp_socket_private_trusted.cc', |
435 'tests/test_tcp_socket_private_trusted.h', | 426 'tests/test_tcp_socket_private_trusted.h', |
436 'tests/test_uma.cc', | 427 'tests/test_uma.cc', |
437 'tests/test_uma.h', | 428 'tests/test_uma.h', |
438 'tests/test_url_loader.cc', | |
439 'tests/test_url_loader.h', | |
440 'tests/test_url_request.cc', | |
441 'tests/test_url_request.h', | |
442 'tests/test_url_util.cc', | 429 'tests/test_url_util.cc', |
443 'tests/test_url_util.h', | 430 'tests/test_url_util.h', |
444 'tests/test_utils.cc', | 431 'tests/test_utils.cc', |
445 'tests/test_utils.h', | 432 'tests/test_utils.h', |
446 'tests/test_var.cc', | |
447 'tests/test_var.h', | |
448 'tests/test_view.cc', | |
449 'tests/test_view.h', | |
450 'tests/test_video_decoder.cc', | 433 'tests/test_video_decoder.cc', |
451 'tests/test_video_decoder.h', | 434 'tests/test_video_decoder.h', |
452 'tests/test_websocket.cc', | |
453 'tests/test_websocket.h', | |
454 'tests/test_x509_certificate_private.cc', | 435 'tests/test_x509_certificate_private.cc', |
455 'tests/test_x509_certificate_private.h', | 436 'tests/test_x509_certificate_private.h', |
456 | 437 |
457 # Deprecated test cases. | 438 # Deprecated test cases. |
458 'tests/test_instance_deprecated.cc', | 439 'tests/test_instance_deprecated.cc', |
459 'tests/test_instance_deprecated.h', | 440 'tests/test_instance_deprecated.h', |
460 'tests/test_var_deprecated.cc', | 441 'tests/test_var_deprecated.cc', |
461 'tests/test_var_deprecated.h', | 442 'tests/test_var_deprecated.h', |
462 ], | 443 ], |
463 }, | 444 }, |
464 'conditions': [ | 445 'conditions': [ |
465 ['p2p_apis==1', { | 446 ['p2p_apis==1', { |
466 'variables': { | 447 'variables': { |
467 'c_source_files': [ | 448 'c_source_files': [ |
468 'c/dev/ppb_transport_dev.h', | 449 'c/dev/ppb_transport_dev.h', |
469 ], | 450 ], |
470 'cpp_source_files': [ | 451 'cpp_source_files': [ |
471 'cpp/dev/transport_dev.cc', | 452 'cpp/dev/transport_dev.cc', |
472 'cpp/dev/transport_dev.h', | 453 'cpp/dev/transport_dev.h', |
473 ], | 454 ], |
474 }, | 455 }, |
475 }], | 456 }], |
476 ], | 457 ], |
477 } | 458 } |
OLD | NEW |