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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 'target_name': 'content_browsertests', | 512 'target_name': 'content_browsertests', |
513 'type': 'executable', | 513 'type': 'executable', |
514 'defines!': ['CONTENT_IMPLEMENTATION'], | 514 'defines!': ['CONTENT_IMPLEMENTATION'], |
515 'dependencies': [ | 515 'dependencies': [ |
516 'content_gpu', | 516 'content_gpu', |
517 'content_plugin', | 517 'content_plugin', |
518 'content_renderer', | 518 'content_renderer', |
519 'content_shell_lib', | 519 'content_shell_lib', |
520 'test_support_content', | 520 'test_support_content', |
521 '../base/base.gyp:test_support_base', | 521 '../base/base.gyp:test_support_base', |
| 522 '../ipc/ipc.gyp:test_support_ipc', |
522 '../net/net.gyp:net_test_support', | 523 '../net/net.gyp:net_test_support', |
| 524 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 525 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 526 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 527 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', |
523 '../skia/skia.gyp:skia', | 528 '../skia/skia.gyp:skia', |
524 '../testing/gtest.gyp:gtest', | 529 '../testing/gtest.gyp:gtest', |
525 '../ui/ui.gyp:ui', | 530 '../ui/ui.gyp:ui', |
526 '../webkit/support/webkit_support.gyp:glue', | 531 '../webkit/support/webkit_support.gyp:glue', |
527 ], | 532 ], |
528 'include_dirs': [ | 533 'include_dirs': [ |
529 '..', | 534 '..', |
530 ], | 535 ], |
531 'defines': [ | 536 'defines': [ |
532 'HAS_OUT_OF_PROC_TEST_RUNNER', | 537 'HAS_OUT_OF_PROC_TEST_RUNNER', |
533 ], | 538 ], |
534 'sources': [ | 539 'sources': [ |
535 'test/content_browser_test.h', | 540 'test/content_browser_test.h', |
536 'test/content_browser_test.cc', | 541 'test/content_browser_test.cc', |
537 'test/content_test_launcher.cc', | 542 'test/content_test_launcher.cc', |
| 543 'renderer/pepper/pepper_file_chooser_host_browsertest.cc', |
538 ], | 544 ], |
539 'conditions': [ | 545 'conditions': [ |
540 ['OS=="win"', { | 546 ['OS=="win"', { |
541 'resource_include_dirs': [ | 547 'resource_include_dirs': [ |
542 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 548 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
543 ], | 549 ], |
544 'sources': [ | 550 'sources': [ |
545 'shell/resource.h', | 551 'shell/resource.h', |
546 'shell/shell.rc', | 552 'shell/shell.rc', |
547 # TODO: It would be nice to have these pulled in | 553 # TODO: It would be nice to have these pulled in |
(...skipping 122 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 |