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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'tests/test_url_loader.cc', | 128 'tests/test_url_loader.cc', |
129 'tests/test_url_loader.h', | 129 'tests/test_url_loader.h', |
130 'tests/test_url_util.cc', | 130 'tests/test_url_util.cc', |
131 'tests/test_url_util.h', | 131 'tests/test_url_util.h', |
132 'tests/test_utils.cc', | 132 'tests/test_utils.cc', |
133 'tests/test_utils.h', | 133 'tests/test_utils.h', |
134 'tests/test_var.cc', | 134 'tests/test_var.cc', |
135 'tests/test_var.h', | 135 'tests/test_var.h', |
136 'tests/test_video_decoder.cc', | 136 'tests/test_video_decoder.cc', |
137 'tests/test_video_decoder.h', | 137 'tests/test_video_decoder.h', |
| 138 'tests/test_websocket.cc', |
| 139 'tests/test_websocket.h', |
138 | 140 |
139 # Deprecated test cases. | 141 # Deprecated test cases. |
140 'tests/test_instance_deprecated.cc', | 142 'tests/test_instance_deprecated.cc', |
141 'tests/test_instance_deprecated.h', | 143 'tests/test_instance_deprecated.h', |
142 'tests/test_var_deprecated.cc', | 144 'tests/test_var_deprecated.cc', |
143 'tests/test_var_deprecated.h', | 145 'tests/test_var_deprecated.h', |
144 ], | 146 ], |
145 'dependencies': [ | 147 'dependencies': [ |
146 'ppapi.gyp:ppapi_cpp', | 148 'ppapi.gyp:ppapi_cpp', |
147 'ppapi_internal.gyp:ppapi_shared', | 149 'ppapi_internal.gyp:ppapi_shared', |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 # Var_deprecated fails in TestPassReference, and we probably won't | 502 # Var_deprecated fails in TestPassReference, and we probably won't |
501 # fix it. | 503 # fix it. |
502 #'tests/test_var_deprecated.cc' | 504 #'tests/test_var_deprecated.cc' |
503 ], | 505 ], |
504 }, | 506 }, |
505 }, | 507 }, |
506 ], | 508 ], |
507 }], | 509 }], |
508 ], | 510 ], |
509 } | 511 } |
OLD | NEW |