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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 8555002: Added NaCl proxy for TCP/UDP (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added PPAPI NaCl tests. 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
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 '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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_uma.cc', 130 'tests/test_uma.cc',
131 'tests/test_uma.h', 131 'tests/test_uma.h',
132 'tests/test_url_loader.cc', 132 'tests/test_url_loader.cc',
133 'tests/test_url_loader.h', 133 'tests/test_url_loader.h',
polina 2011/11/29 05:20:47 new tests should also show up here to run as trust
ygorshenin 2011/11/29 13:25:18 Done.
134 'tests/test_url_util.cc', 134 'tests/test_url_util.cc',
135 'tests/test_url_util.h', 135 'tests/test_url_util.h',
136 'tests/test_utils.cc', 136 'tests/test_utils.cc',
137 'tests/test_utils.h', 137 'tests/test_utils.h',
138 'tests/test_var.cc', 138 'tests/test_var.cc',
139 'tests/test_var.h', 139 'tests/test_var.h',
140 'tests/test_video_decoder.cc', 140 'tests/test_video_decoder.cc',
141 'tests/test_video_decoder.h', 141 'tests/test_video_decoder.h',
142 'tests/test_websocket.cc', 142 'tests/test_websocket.cc',
143 'tests/test_websocket.h', 143 'tests/test_websocket.h',
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 #'tests/test_uma.cc', 502 #'tests/test_uma.cc',
503 # Activating the URL loader test requires a test httpd that 503 # Activating the URL loader test requires a test httpd that
504 # understands HTTP POST, which our current httpd.py doesn't. 504 # understands HTTP POST, which our current httpd.py doesn't.
505 # It also requires deactivating the tests that use FileIOTrusted 505 # It also requires deactivating the tests that use FileIOTrusted
506 # when running in NaCl. 506 # when running in NaCl.
507 #'tests/test_url_loader.cc', 507 #'tests/test_url_loader.cc',
508 # Does not compile under nacl (uses VarPrivate). 508 # Does not compile under nacl (uses VarPrivate).
509 #'test_url_util.cc', 509 #'test_url_util.cc',
510 # Not yet proxied. 510 # Not yet proxied.
511 #'test_video_decoder.cc', 511 #'test_video_decoder.cc',
512 'tests/test_tcp_socket_private_shared.cc',
polina 2011/11/29 05:20:47 why do these have "shared" suffix?
ygorshenin 2011/11/29 13:25:18 Because of there already exists test_tcp_socket_pr
polina 2011/11/30 01:26:21 I would name the udp one what it should be (no sha
513 'tests/test_udp_socket_private_shared.cc',
512 'tests/test_var.cc', 514 'tests/test_var.cc',
513 515
514 # Deprecated test cases. 516 # Deprecated test cases.
515 #'tests/test_instance_deprecated.cc', 517 #'tests/test_instance_deprecated.cc',
516 # Var_deprecated fails in TestPassReference, and we probably won't 518 # Var_deprecated fails in TestPassReference, and we probably won't
517 # fix it. 519 # fix it.
518 #'tests/test_var_deprecated.cc' 520 #'tests/test_var_deprecated.cc'
519 ], 521 ],
520 }, 522 },
521 }, 523 },
522 ], 524 ],
523 }], 525 }],
524 ], 526 ],
525 } 527 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698