Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: net/net.gyp

Issue 46303005: Fix chrome upload with content uri (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adding unittests for net/ Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 2971 matching lines...) Expand 10 before | Expand all | Expand 10 after
2982 }], 2982 }],
2983 # Special target to wrap a gtest_target_type==shared_library 2983 # Special target to wrap a gtest_target_type==shared_library
2984 # net_unittests into an android apk for execution. 2984 # net_unittests into an android apk for execution.
2985 # See base.gyp for TODO(jrg)s about this strategy. 2985 # See base.gyp for TODO(jrg)s about this strategy.
2986 ['OS == "android" and gtest_target_type == "shared_library"', { 2986 ['OS == "android" and gtest_target_type == "shared_library"', {
2987 'targets': [ 2987 'targets': [
2988 { 2988 {
2989 'target_name': 'net_unittests_apk', 2989 'target_name': 'net_unittests_apk',
2990 'type': 'none', 2990 'type': 'none',
2991 'dependencies': [ 2991 'dependencies': [
2992 '../base/base.gyp:base_java_unittest_support',
2992 'net_java', 2993 'net_java',
2993 'net_javatests', 2994 'net_javatests',
2994 'net_unittests', 2995 'net_unittests',
2995 ], 2996 ],
2996 'variables': { 2997 'variables': {
2997 'test_suite_name': 'net_unittests', 2998 'test_suite_name': 'net_unittests',
2998 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)', 2999 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)',
2999 }, 3000 },
3000 'includes': [ '../build/apk_test.gypi' ], 3001 'includes': [ '../build/apk_test.gypi' ],
3001 }, 3002 },
(...skipping 27 matching lines...) Expand all
3029 'net_unittests.isolate', 3030 'net_unittests.isolate',
3030 ], 3031 ],
3031 'sources': [ 3032 'sources': [
3032 'net_unittests.isolate', 3033 'net_unittests.isolate',
3033 ], 3034 ],
3034 }, 3035 },
3035 ], 3036 ],
3036 }], 3037 }],
3037 ], 3038 ],
3038 } 3039 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698