| 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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 ], | 865 ], |
| 866 'conditions': [ | 866 'conditions': [ |
| 867 # Special target to wrap a gtest_target_type==shared_library | 867 # Special target to wrap a gtest_target_type==shared_library |
| 868 # sync_unit_tests into an android apk for execution. | 868 # sync_unit_tests into an android apk for execution. |
| 869 ['OS == "android" and gtest_target_type == "shared_library"', { | 869 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 870 'targets': [ | 870 'targets': [ |
| 871 { | 871 { |
| 872 'target_name': 'sync_unit_tests_apk', | 872 'target_name': 'sync_unit_tests_apk', |
| 873 'type': 'none', | 873 'type': 'none', |
| 874 'dependencies': [ | 874 'dependencies': [ |
| 875 '../base/base.gyp:base_java', | |
| 876 'sync_unit_tests', | 875 'sync_unit_tests', |
| 877 ], | 876 ], |
| 878 'variables': { | 877 'variables': { |
| 879 'test_suite_name': 'sync_unit_tests', | 878 'test_suite_name': 'sync_unit_tests', |
| 880 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 879 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
| 881 }, | 880 }, |
| 882 'includes': [ '../build/apk_test.gypi' ], | 881 'includes': [ '../build/apk_test.gypi' ], |
| 883 }, | 882 }, |
| 884 ], | 883 ], |
| 885 }], | 884 }], |
| 886 ], | 885 ], |
| 887 } | 886 } |
| OLD | NEW |