| 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_codecs.h', | 10 'c/pp_codecs.h', |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 # Compile-time tests | 506 # Compile-time tests |
| 507 'tests/test_c_includes.c', | 507 'tests/test_c_includes.c', |
| 508 'tests/test_cpp_includes.cc', | 508 'tests/test_cpp_includes.cc', |
| 509 'tests/test_struct_sizes.c', | 509 'tests/test_struct_sizes.c', |
| 510 ], | 510 ], |
| 511 # | 511 # |
| 512 # Sources used in NaCl tests. | 512 # Sources used in NaCl tests. |
| 513 # | 513 # |
| 514 'test_nacl_source_files': [ | 514 'test_nacl_source_files': [ |
| 515 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | 515 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
| 516 'tests/test_nacl_irt_stack_alignment.cc', |
| 517 'tests/test_nacl_irt_stack_alignment.h', |
| 516 'tests/test_tcp_server_socket_private_disallowed.cc', | 518 'tests/test_tcp_server_socket_private_disallowed.cc', |
| 517 'tests/test_tcp_socket_private_disallowed.cc', | 519 'tests/test_tcp_socket_private_disallowed.cc', |
| 518 'tests/test_udp_socket_private_disallowed.cc', | 520 'tests/test_udp_socket_private_disallowed.cc', |
| 519 ], | 521 ], |
| 520 # | 522 # |
| 521 # Sources used in trusted tests. | 523 # Sources used in trusted tests. |
| 522 # | 524 # |
| 523 'test_trusted_source_files': [ | 525 'test_trusted_source_files': [ |
| 524 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | 526 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
| 525 'tests/test_broker.cc', | 527 'tests/test_broker.cc', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 'tests/test_x509_certificate_private.h', | 565 'tests/test_x509_certificate_private.h', |
| 564 | 566 |
| 565 # Deprecated test cases. | 567 # Deprecated test cases. |
| 566 'tests/test_instance_deprecated.cc', | 568 'tests/test_instance_deprecated.cc', |
| 567 'tests/test_instance_deprecated.h', | 569 'tests/test_instance_deprecated.h', |
| 568 'tests/test_var_deprecated.cc', | 570 'tests/test_var_deprecated.cc', |
| 569 'tests/test_var_deprecated.h', | 571 'tests/test_var_deprecated.h', |
| 570 ], | 572 ], |
| 571 }, | 573 }, |
| 572 } | 574 } |
| OLD | NEW |