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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 # The core sync library. | 10 # The core sync library. |
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
827 ], | 827 ], |
828 'conditions': [ | 828 'conditions': [ |
829 # Special target to wrap a gtest_target_type==shared_library | 829 # Special target to wrap a gtest_target_type==shared_library |
830 # sync_unit_tests into an android apk for execution. | 830 # sync_unit_tests into an android apk for execution. |
831 ['OS == "android" and gtest_target_type == "shared_library"', { | 831 ['OS == "android" and gtest_target_type == "shared_library"', { |
832 'targets': [ | 832 'targets': [ |
833 { | 833 { |
834 'target_name': 'sync_unit_tests_apk', | 834 'target_name': 'sync_unit_tests_apk', |
835 'type': 'none', | 835 'type': 'none', |
836 'dependencies': [ | 836 'dependencies': [ |
837 '../base/base.gyp:base_java', | 837 '../base/base.gyp:base_java', |
nilesh
2012/08/08 00:11:05
You should be able to remove the direct dependency
| |
838 'sync_unit_tests', | 838 'sync_unit_tests', |
839 ], | 839 ], |
840 'variables': { | 840 'variables': { |
841 'test_suite_name': 'sync_unit_tests', | 841 'test_suite_name': 'sync_unit_tests', |
842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', | 842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', |
843 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , | |
844 }, | 843 }, |
845 'includes': [ '../build/apk_test.gypi' ], | 844 'includes': [ '../build/apk_test.gypi' ], |
846 }, | 845 }, |
847 ], | 846 ], |
848 }], | 847 }], |
849 ], | 848 ], |
850 } | 849 } |
OLD | NEW |