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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 # 'outputs': [ | 181 # 'outputs': [ |
182 # 'tests/test_c_includes.c', | 182 # 'tests/test_c_includes.c', |
183 # 'tests/test_cc_includes.cc', | 183 # 'tests/test_cc_includes.cc', |
184 # ], | 184 # ], |
185 # 'action': [ | 185 # 'action': [ |
186 # '<!@(python generate_ppapi_include_tests.py)', | 186 # '<!@(python generate_ppapi_include_tests.py)', |
187 # ], | 187 # ], |
188 # }, | 188 # }, |
189 # ], | 189 # ], |
190 }, | 190 }, |
191 { | |
192 'target_name': 'ppapi_nacl_tests', | |
193 'type': 'none', | |
194 'dependencies': [ | |
195 'native_client/native_client.gyp:nacl_irt', | |
196 ], | |
197 'variables': { | |
198 'nexe_target': 'ppapi_nacl_tests', | |
199 'build_glibc': 0, | |
200 'build_newlib': 1, | |
201 'include_dirs': [ | |
202 'lib/gl/include', | |
203 '..', | |
204 ], | |
205 'sources': [ | |
206 # Common test files | |
207 'tests/test_case.cc', | |
208 'tests/test_utils.cc', | |
209 'tests/testing_instance.cc', | |
210 | |
211 # Compile-time tests | |
212 'tests/test_c_includes.c', | |
213 'tests/test_cpp_includes.cc', | |
214 'tests/test_struct_sizes.c', | |
215 | |
216 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | |
217 # Add/uncomment PPAPI interfaces below when they get proxied. | |
218 # Not yet proxied. | |
219 #'test_broker.cc', | |
220 # Not yet proxied. | |
221 #'test_buffer.cc', | |
222 # Not yet proxied. | |
223 #'test_char_set.cc', | |
224 'tests/test_cursor_control.cc', | |
225 # Fails in DeleteDirectoryRecursively. | |
226 # BUG: http://code.google.com/p/nativeclient/issues/detail?id=2107 | |
227 #'test_directory_reader.cc', | |
228 'tests/test_file_io.cc', | |
229 'tests/test_file_ref.cc', | |
230 'tests/test_file_system.cc', | |
231 'tests/test_memory.cc', | |
232 'tests/test_graphics_2d.cc', | |
233 'tests/test_image_data.cc', | |
234 'tests/test_paint_aggregator.cc', | |
235 # test_post_message.cc relies on synchronous scripting, which is not | |
236 # available for untrusted tests. | |
237 # Does not compile under nacl (uses private interface ExecuteScript). | |
238 #'test_post_message.cc', | |
239 'tests/test_scrollbar.cc', | |
240 # Not yet proxied. | |
241 #'tests/test_transport.cc', | |
242 # Not yet proxied. | |
243 #'tests/test_uma.cc', | |
244 # Activating the URL loader test requires a test httpd that | |
245 # understands HTTP POST, which our current httpd.py doesn't. | |
246 # It also requires deactivating the tests that use FileIOTrusted | |
247 # when running in NaCl. | |
248 #'tests/test_url_loader.cc', | |
249 # Does not compile under nacl (uses VarPrivate). | |
250 #'test_url_util.cc', | |
251 # Not yet proxied. | |
252 #'test_video_decoder.cc', | |
253 'tests/test_var.cc', | |
254 | |
255 # Deprecated test cases. | |
256 #'tests/test_instance_deprecated.cc', | |
257 # Var_deprecated fails in TestPassReference, and we probably won't | |
258 # fix it. | |
259 #'tests/test_var_deprecated.cc' | |
260 ], | |
261 }, | |
262 }, | |
263 { | 191 { |
264 'target_name': 'ppapi_unittests', | 192 'target_name': 'ppapi_unittests', |
265 'type': 'executable', | 193 'type': 'executable', |
266 'variables': { | 194 'variables': { |
267 'chromium_code': 1, | 195 'chromium_code': 1, |
268 }, | 196 }, |
269 'dependencies': [ | 197 'dependencies': [ |
270 'ppapi_proxy', | 198 'ppapi_proxy', |
271 'ppapi_shared', | 199 'ppapi_shared', |
272 '../base/base.gyp:test_support_base', | 200 '../base/base.gyp:test_support_base', |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'lib/gl/include', | 403 'lib/gl/include', |
476 ], | 404 ], |
477 'sources': [ | 405 'sources': [ |
478 'examples/video_capture/video_capture.cc', | 406 'examples/video_capture/video_capture.cc', |
479 ], | 407 ], |
480 }, | 408 }, |
481 ], | 409 ], |
482 }] | 410 }] |
483 ] | 411 ] |
484 } | 412 } |
OLD | NEW |