OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'test_shell_windows_resource_files': [ | 8 'test_shell_windows_resource_files': [ |
9 'resources/test_shell.rc', | 9 'resources/test_shell.rc', |
10 'resources/pan_east.cur', | 10 'resources/pan_east.cur', |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 'sources': [ | 304 'sources': [ |
305 '../../glue/plugins/test/npapi_constants.cc', | 305 '../../glue/plugins/test/npapi_constants.cc', |
306 '../../glue/plugins/test/npapi_constants.h', | 306 '../../glue/plugins/test/npapi_constants.h', |
307 '../../glue/plugins/test/npapi_test.cc', | 307 '../../glue/plugins/test/npapi_test.cc', |
308 '../../glue/plugins/test/npapi_test.def', | 308 '../../glue/plugins/test/npapi_test.def', |
309 '../../glue/plugins/test/npapi_test.rc', | 309 '../../glue/plugins/test/npapi_test.rc', |
310 '../../glue/plugins/test/plugin_arguments_test.cc', | 310 '../../glue/plugins/test/plugin_arguments_test.cc', |
311 '../../glue/plugins/test/plugin_arguments_test.h', | 311 '../../glue/plugins/test/plugin_arguments_test.h', |
312 '../../glue/plugins/test/plugin_client.cc', | 312 '../../glue/plugins/test/plugin_client.cc', |
313 '../../glue/plugins/test/plugin_client.h', | 313 '../../glue/plugins/test/plugin_client.h', |
| 314 '../../glue/plugins/test/plugin_create_instance_in_paint.cc', |
| 315 '../../glue/plugins/test/plugin_create_instance_in_paint.h', |
314 '../../glue/plugins/test/plugin_delete_plugin_in_stream_test.cc', | 316 '../../glue/plugins/test/plugin_delete_plugin_in_stream_test.cc', |
315 '../../glue/plugins/test/plugin_delete_plugin_in_stream_test.h', | 317 '../../glue/plugins/test/plugin_delete_plugin_in_stream_test.h', |
316 '../../glue/plugins/test/plugin_get_javascript_url_test.cc', | 318 '../../glue/plugins/test/plugin_get_javascript_url_test.cc', |
317 '../../glue/plugins/test/plugin_get_javascript_url_test.h', | 319 '../../glue/plugins/test/plugin_get_javascript_url_test.h', |
318 '../../glue/plugins/test/plugin_geturl_test.cc', | 320 '../../glue/plugins/test/plugin_geturl_test.cc', |
319 '../../glue/plugins/test/plugin_geturl_test.h', | 321 '../../glue/plugins/test/plugin_geturl_test.h', |
320 '../../glue/plugins/test/plugin_javascript_open_popup.cc', | 322 '../../glue/plugins/test/plugin_javascript_open_popup.cc', |
321 '../../glue/plugins/test/plugin_javascript_open_popup.h', | 323 '../../glue/plugins/test/plugin_javascript_open_popup.h', |
322 '../../glue/plugins/test/plugin_new_fails_test.cc', | 324 '../../glue/plugins/test/plugin_new_fails_test.cc', |
323 '../../glue/plugins/test/plugin_new_fails_test.h', | 325 '../../glue/plugins/test/plugin_new_fails_test.h', |
(...skipping 24 matching lines...) Expand all Loading... |
348 | 350 |
349 # plugin_npobject_lifetime_test.cc has win32-isms | 351 # plugin_npobject_lifetime_test.cc has win32-isms |
350 # (HWND, CALLBACK). | 352 # (HWND, CALLBACK). |
351 '../../glue/plugins/test/plugin_npobject_lifetime_test.cc', | 353 '../../glue/plugins/test/plugin_npobject_lifetime_test.cc', |
352 | 354 |
353 # The windowed/windowless APIs are necessarily | 355 # The windowed/windowless APIs are necessarily |
354 # platform-specific. | 356 # platform-specific. |
355 '../../glue/plugins/test/plugin_window_size_test.cc', | 357 '../../glue/plugins/test/plugin_window_size_test.cc', |
356 '../../glue/plugins/test/plugin_windowless_test.cc', | 358 '../../glue/plugins/test/plugin_windowless_test.cc', |
357 | 359 |
| 360 # Seems windows specific. |
| 361 '../../glue/plugins/test/plugin_create_instance_in_paint.cc', |
| 362 '../../glue/plugins/test/plugin_create_instance_in_paint.h', |
| 363 |
358 # windows-specific resources | 364 # windows-specific resources |
359 '../../glue/plugins/test/npapi_test.def', | 365 '../../glue/plugins/test/npapi_test.def', |
360 '../../glue/plugins/test/npapi_test.rc', | 366 '../../glue/plugins/test/npapi_test.rc', |
361 ], | 367 ], |
362 }], | 368 }], |
363 ['OS=="mac"', { | 369 ['OS=="mac"', { |
364 'link_settings': { | 370 'link_settings': { |
365 'libraries': [ | 371 'libraries': [ |
366 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 372 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
367 ], | 373 ], |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 'conditions': [ | 525 'conditions': [ |
520 ['OS!="win"', { | 526 ['OS!="win"', { |
521 'sources!' : ['test_worker/test_worker.def'], | 527 'sources!' : ['test_worker/test_worker.def'], |
522 }], | 528 }], |
523 ], | 529 ], |
524 }, | 530 }, |
525 ], | 531 ], |
526 }], | 532 }], |
527 ], | 533 ], |
528 } | 534 } |
OLD | NEW |