| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ppapi_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'tests/test_net_address_private.h', | 120 'tests/test_net_address_private.h', |
| 121 'tests/test_paint_aggregator.cc', | 121 'tests/test_paint_aggregator.cc', |
| 122 'tests/test_paint_aggregator.h', | 122 'tests/test_paint_aggregator.h', |
| 123 'tests/test_post_message.cc', | 123 'tests/test_post_message.cc', |
| 124 'tests/test_post_message.h', | 124 'tests/test_post_message.h', |
| 125 'tests/test_scrollbar.cc', | 125 'tests/test_scrollbar.cc', |
| 126 'tests/test_scrollbar.h', | 126 'tests/test_scrollbar.h', |
| 127 'tests/test_struct_sizes.c', | 127 'tests/test_struct_sizes.c', |
| 128 'tests/test_tcp_socket_private.cc', | 128 'tests/test_tcp_socket_private.cc', |
| 129 'tests/test_tcp_socket_private.h', | 129 'tests/test_tcp_socket_private.h', |
| 130 'tests/test_tcp_socket_private_shared.cc', |
| 131 'tests/test_tcp_socket_private_shared.h', |
| 132 'tests/test_udp_socket_private_shared.cc', |
| 133 'tests/test_udp_socket_private_shared.h', |
| 130 'tests/test_uma.cc', | 134 'tests/test_uma.cc', |
| 131 'tests/test_uma.h', | 135 'tests/test_uma.h', |
| 132 'tests/test_url_loader.cc', | 136 'tests/test_url_loader.cc', |
| 133 'tests/test_url_loader.h', | 137 'tests/test_url_loader.h', |
| 134 'tests/test_url_util.cc', | 138 'tests/test_url_util.cc', |
| 135 'tests/test_url_util.h', | 139 'tests/test_url_util.h', |
| 136 'tests/test_utils.cc', | 140 'tests/test_utils.cc', |
| 137 'tests/test_utils.h', | 141 'tests/test_utils.h', |
| 138 'tests/test_var.cc', | 142 'tests/test_var.cc', |
| 139 'tests/test_var.h', | 143 'tests/test_var.h', |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 #'tests/test_uma.cc', | 506 #'tests/test_uma.cc', |
| 503 # Activating the URL loader test requires a test httpd that | 507 # Activating the URL loader test requires a test httpd that |
| 504 # understands HTTP POST, which our current httpd.py doesn't. | 508 # understands HTTP POST, which our current httpd.py doesn't. |
| 505 # It also requires deactivating the tests that use FileIOTrusted | 509 # It also requires deactivating the tests that use FileIOTrusted |
| 506 # when running in NaCl. | 510 # when running in NaCl. |
| 507 #'tests/test_url_loader.cc', | 511 #'tests/test_url_loader.cc', |
| 508 # Does not compile under nacl (uses VarPrivate). | 512 # Does not compile under nacl (uses VarPrivate). |
| 509 #'test_url_util.cc', | 513 #'test_url_util.cc', |
| 510 # Not yet proxied. | 514 # Not yet proxied. |
| 511 #'test_video_decoder.cc', | 515 #'test_video_decoder.cc', |
| 516 'tests/test_tcp_socket_private_shared.cc', |
| 517 'tests/test_udp_socket_private_shared.cc', |
| 512 'tests/test_var.cc', | 518 'tests/test_var.cc', |
| 513 | 519 |
| 514 # Deprecated test cases. | 520 # Deprecated test cases. |
| 515 #'tests/test_instance_deprecated.cc', | 521 #'tests/test_instance_deprecated.cc', |
| 516 # Var_deprecated fails in TestPassReference, and we probably won't | 522 # Var_deprecated fails in TestPassReference, and we probably won't |
| 517 # fix it. | 523 # fix it. |
| 518 #'tests/test_var_deprecated.cc' | 524 #'tests/test_var_deprecated.cc' |
| 519 ], | 525 ], |
| 520 }, | 526 }, |
| 521 }, | 527 }, |
| 522 ], | 528 ], |
| 523 }], | 529 }], |
| 524 ], | 530 ], |
| 525 } | 531 } |
| OLD | NEW |