OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'use_tracing_cache_backend%': 0, | 10 'use_tracing_cache_backend%': 0, |
(...skipping 2973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2984 }], | 2984 }], |
2985 # Special target to wrap a gtest_target_type==shared_library | 2985 # Special target to wrap a gtest_target_type==shared_library |
2986 # net_unittests into an android apk for execution. | 2986 # net_unittests into an android apk for execution. |
2987 # See base.gyp for TODO(jrg)s about this strategy. | 2987 # See base.gyp for TODO(jrg)s about this strategy. |
2988 ['OS == "android" and gtest_target_type == "shared_library"', { | 2988 ['OS == "android" and gtest_target_type == "shared_library"', { |
2989 'targets': [ | 2989 'targets': [ |
2990 { | 2990 { |
2991 'target_name': 'net_unittests_apk', | 2991 'target_name': 'net_unittests_apk', |
2992 'type': 'none', | 2992 'type': 'none', |
2993 'dependencies': [ | 2993 'dependencies': [ |
| 2994 '../base/base.gyp:base_java_unittest_support', |
2994 'net_java', | 2995 'net_java', |
2995 'net_javatests', | 2996 'net_javatests', |
2996 'net_unittests', | 2997 'net_unittests', |
2997 ], | 2998 ], |
2998 'variables': { | 2999 'variables': { |
2999 'test_suite_name': 'net_unittests', | 3000 'test_suite_name': 'net_unittests', |
3000 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt
ests<(SHARED_LIB_SUFFIX)', | 3001 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt
ests<(SHARED_LIB_SUFFIX)', |
3001 }, | 3002 }, |
3002 'includes': [ '../build/apk_test.gypi' ], | 3003 'includes': [ '../build/apk_test.gypi' ], |
3003 }, | 3004 }, |
(...skipping 27 matching lines...) Expand all Loading... |
3031 'net_unittests.isolate', | 3032 'net_unittests.isolate', |
3032 ], | 3033 ], |
3033 'sources': [ | 3034 'sources': [ |
3034 'net_unittests.isolate', | 3035 'net_unittests.isolate', |
3035 ], | 3036 ], |
3036 }, | 3037 }, |
3037 ], | 3038 ], |
3038 }], | 3039 }], |
3039 ], | 3040 ], |
3040 } | 3041 } |
OLD | NEW |