OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 'type': 'executable', | 504 'type': 'executable', |
505 'defines!': ['CONTENT_IMPLEMENTATION'], | 505 'defines!': ['CONTENT_IMPLEMENTATION'], |
506 'dependencies': [ | 506 'dependencies': [ |
507 'content_browser', | 507 'content_browser', |
508 'content_gpu', | 508 'content_gpu', |
509 'content_plugin', | 509 'content_plugin', |
510 'content_renderer', | 510 'content_renderer', |
511 'content_shell_lib', | 511 'content_shell_lib', |
512 'test_support_content', | 512 'test_support_content', |
513 '../base/base.gyp:test_support_base', | 513 '../base/base.gyp:test_support_base', |
| 514 '../ipc/ipc.gyp:test_support_ipc', |
514 '../net/net.gyp:net_test_support', | 515 '../net/net.gyp:net_test_support', |
| 516 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 517 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 518 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 519 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', |
515 '../skia/skia.gyp:skia', | 520 '../skia/skia.gyp:skia', |
516 '../testing/gtest.gyp:gtest', | 521 '../testing/gtest.gyp:gtest', |
517 '../ui/ui.gyp:ui', | 522 '../ui/ui.gyp:ui', |
518 '../webkit/support/webkit_support.gyp:glue', | 523 '../webkit/support/webkit_support.gyp:glue', |
519 ], | 524 ], |
520 'include_dirs': [ | 525 'include_dirs': [ |
521 '..', | 526 '..', |
522 ], | 527 ], |
523 'defines': [ | 528 'defines': [ |
524 'HAS_OUT_OF_PROC_TEST_RUNNER', | 529 'HAS_OUT_OF_PROC_TEST_RUNNER', |
525 ], | 530 ], |
526 'sources': [ | 531 'sources': [ |
527 'app/startup_helper_win.cc', | 532 'app/startup_helper_win.cc', |
528 'public/test/test_launcher.h', | 533 'public/test/test_launcher.h', |
529 'test/content_browser_test.h', | 534 'test/content_browser_test.h', |
530 'test/content_browser_test.cc', | 535 'test/content_browser_test.cc', |
531 'test/content_test_launcher.cc', | 536 'test/content_test_launcher.cc', |
532 'test/test_launcher.cc', | 537 'test/test_launcher.cc', |
| 538 'renderer/pepper/pepper_file_chooser_host_browsertest.cc', |
533 ], | 539 ], |
534 'conditions': [ | 540 'conditions': [ |
535 ['OS=="win"', { | 541 ['OS=="win"', { |
536 'resource_include_dirs': [ | 542 'resource_include_dirs': [ |
537 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 543 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
538 ], | 544 ], |
539 'sources': [ | 545 'sources': [ |
540 'shell/resource.h', | 546 'shell/resource.h', |
541 'shell/shell.rc', | 547 'shell/shell.rc', |
542 # TODO: It would be nice to have these pulled in | 548 # TODO: It would be nice to have these pulled in |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | 676 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
671 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 677 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
672 ], | 678 ], |
673 }, | 679 }, |
674 'includes': [ '../build/apk_test.gypi' ], | 680 'includes': [ '../build/apk_test.gypi' ], |
675 }, | 681 }, |
676 ], | 682 ], |
677 }], | 683 }], |
678 ], | 684 ], |
679 } | 685 } |
OLD | NEW |