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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
749 # Special target to wrap a gtest_target_type==shared_library | 749 # Special target to wrap a gtest_target_type==shared_library |
750 # content_unittests into an android apk for execution. | 750 # content_unittests into an android apk for execution. |
751 # See base.gyp for TODO(jrg)s about this strategy. | 751 # See base.gyp for TODO(jrg)s about this strategy. |
752 ['OS == "android" and gtest_target_type == "shared_library"', { | 752 ['OS == "android" and gtest_target_type == "shared_library"', { |
753 'targets': [ | 753 'targets': [ |
754 { | 754 { |
755 'target_name': 'content_unittests_apk', | 755 'target_name': 'content_unittests_apk', |
756 'type': 'none', | 756 'type': 'none', |
757 'dependencies': [ | 757 'dependencies': [ |
758 '../base/base.gyp:base_java', | 758 '../base/base.gyp:base_java', |
| 759 '../net/net.gyp:net_java', |
759 'content_java', | 760 'content_java', |
760 'content_unittests', | 761 'content_unittests', |
761 '../net/net.gyp:net_java', | |
762 ], | 762 ], |
763 'variables': { | 763 'variables': { |
764 'test_suite_name': 'content_unittests', | 764 'test_suite_name': 'content_unittests', |
765 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u
nittests<(SHARED_LIB_SUFFIX)', | 765 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u
nittests<(SHARED_LIB_SUFFIX)', |
766 'input_jars_paths': [ | |
767 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | |
768 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | |
769 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', | |
770 ], | |
771 }, | 766 }, |
772 'includes': [ '../build/apk_test.gypi' ], | 767 'includes': [ '../build/apk_test.gypi' ], |
773 }, | 768 }, |
774 ], | 769 ], |
775 }], | 770 }], |
776 ['OS == "android"', { | 771 ['OS == "android"', { |
777 'targets': [ | 772 'targets': [ |
778 { | 773 { |
779 'target_name': 'content_javatests', | 774 'target_name': 'content_javatests', |
780 'type': 'none', | 775 'type': 'none', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 '-buildfile', | 828 '-buildfile', |
834 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | 829 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', |
835 ] | 830 ] |
836 } | 831 } |
837 ], | 832 ], |
838 }, | 833 }, |
839 ], | 834 ], |
840 }], | 835 }], |
841 ], | 836 ], |
842 } | 837 } |
OLD | NEW |