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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'test/test_notification_tracker.cc', | 121 'test/test_notification_tracker.cc', |
122 'test/test_renderer_host.cc', | 122 'test/test_renderer_host.cc', |
123 'test/test_render_view_host_factory.cc', | 123 'test/test_render_view_host_factory.cc', |
124 'test/test_render_view_host_factory.h', | 124 'test/test_render_view_host_factory.h', |
125 'test/test_launcher.cc', | 125 'test/test_launcher.cc', |
126 'test/test_utils.cc', | 126 'test/test_utils.cc', |
127 'test/test_web_contents_view.cc', | 127 'test/test_web_contents_view.cc', |
128 'test/test_web_contents_view.h', | 128 'test/test_web_contents_view.h', |
129 'test/unittest_test_suite.cc', | 129 'test/unittest_test_suite.cc', |
130 'test/web_contents_tester.cc', | 130 'test/web_contents_tester.cc', |
| 131 '../chrome/chrome_resources.gyp:packed_resources', |
131 | 132 |
132 # TODO(phajdan.jr): Those files should be moved to webkit | 133 # TODO(phajdan.jr): Those files should be moved to webkit |
133 # test support target. | 134 # test support target. |
134 '../webkit/appcache/appcache_test_helper.cc', | 135 '../webkit/appcache/appcache_test_helper.cc', |
135 '../webkit/appcache/appcache_test_helper.h', | 136 '../webkit/appcache/appcache_test_helper.h', |
136 '../webkit/quota/mock_special_storage_policy.cc', | 137 '../webkit/quota/mock_special_storage_policy.cc', |
137 '../webkit/quota/mock_special_storage_policy.h', | 138 '../webkit/quota/mock_special_storage_policy.h', |
138 ], | 139 ], |
139 'conditions': [ | 140 'conditions': [ |
140 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 141 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 'dependencies': [ | 589 'dependencies': [ |
589 '../base/allocator/allocator.gyp:allocator', | 590 '../base/allocator/allocator.gyp:allocator', |
590 ], | 591 ], |
591 }], | 592 }], |
592 ['OS=="mac"', { | 593 ['OS=="mac"', { |
593 'dependencies': [ | 594 'dependencies': [ |
594 'content_shell', # Needed for Content Shell.app's Helper. | 595 'content_shell', # Needed for Content Shell.app's Helper. |
595 ], | 596 ], |
596 }], | 597 }], |
597 ['use_aura==1', { | 598 ['use_aura==1', { |
| 599 'dependencies': [ |
| 600 '../chrome/chrome_resources.gyp:packed_resources', |
| 601 ], |
598 'sources!': [ | 602 'sources!': [ |
599 'browser/plugin_browsertest.cc', | 603 'browser/plugin_browsertest.cc', |
600 ], | 604 ], |
601 }], | 605 }], |
| 606 ['chromeos==1', { |
| 607 'dependencies': [ |
| 608 '../chromeos/chromeos.gyp:chromeos_test_support', |
| 609 '../testing/gmock.gyp:gmock', |
| 610 ], |
| 611 }], |
602 ['target_arch!="arm"', { | 612 ['target_arch!="arm"', { |
603 'dependencies': [ | 613 'dependencies': [ |
604 # Runtime dependencies | 614 # Runtime dependencies |
605 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 615 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
606 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', | 616 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', |
607 ], | 617 ], |
608 }], | 618 }], |
609 ], | 619 ], |
610 }, | 620 }, |
611 ], | 621 ], |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 719 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
710 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', | 720 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', |
711 ], | 721 ], |
712 }, | 722 }, |
713 'includes': [ '../build/apk_test.gypi' ], | 723 'includes': [ '../build/apk_test.gypi' ], |
714 }, | 724 }, |
715 ], | 725 ], |
716 }], | 726 }], |
717 ], | 727 ], |
718 } | 728 } |
OLD | NEW |