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

Side by Side Diff: net/net.gyp

Issue 10837143: Make java.gypi export jar path to input_jars_paths variable (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 months 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
« no previous file with comments | « media/media.gyp ('k') | sql/sql.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 1963 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 { 1974 {
1975 'target_name': 'net_java', 1975 'target_name': 'net_java',
1976 'type': 'none', 1976 'type': 'none',
1977 'variables': { 1977 'variables': {
1978 'package_name': 'net', 1978 'package_name': 'net',
1979 'java_in_dir': '../net/android/java', 1979 'java_in_dir': '../net/android/java',
1980 }, 1980 },
1981 'dependencies': [ 1981 'dependencies': [
1982 '../base/base.gyp:base_java', 1982 '../base/base.gyp:base_java',
1983 ], 1983 ],
1984 'export_dependent_settings': [
1985 '../base/base.gyp:base_java',
1986 ],
1984 'includes': [ '../build/java.gypi' ], 1987 'includes': [ '../build/java.gypi' ],
1985 }, 1988 },
1986 ], 1989 ],
1987 }], 1990 }],
1988 # Special target to wrap a gtest_target_type==shared_library 1991 # Special target to wrap a gtest_target_type==shared_library
1989 # net_unittests into an android apk for execution. 1992 # net_unittests into an android apk for execution.
1990 # See base.gyp for TODO(jrg)s about this strategy. 1993 # See base.gyp for TODO(jrg)s about this strategy.
1991 ['OS == "android" and gtest_target_type == "shared_library"', { 1994 ['OS == "android" and gtest_target_type == "shared_library"', {
1992 'targets': [ 1995 'targets': [
1993 { 1996 {
1994 'target_name': 'net_unittests_apk', 1997 'target_name': 'net_unittests_apk',
1995 'type': 'none', 1998 'type': 'none',
1996 'dependencies': [ 1999 'dependencies': [
1997 '../base/base.gyp:base_java',
1998 'net_java', 2000 'net_java',
1999 'net_unittests', 2001 'net_unittests',
2000 ], 2002 ],
2001 'variables': { 2003 'variables': {
2002 'test_suite_name': 'net_unittests', 2004 'test_suite_name': 'net_unittests',
2003 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)', 2005 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)',
2004 'input_jars_paths': [
2005 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
2006 '<(PRODUCT_DIR)/lib.java/chromium_net.jar',
2007 ],
2008 }, 2006 },
2009 'includes': [ '../build/apk_test.gypi' ], 2007 'includes': [ '../build/apk_test.gypi' ],
2010 }, 2008 },
2011 ], 2009 ],
2012 }], 2010 }],
2013 ['OS=="win"', { 2011 ['OS=="win"', {
2014 'targets': [ 2012 'targets': [
2015 { 2013 {
2016 # TODO(port): dump_cache is still Windows-specific. 2014 # TODO(port): dump_cache is still Windows-specific.
2017 'target_name': 'dump_cache', 2015 'target_name': 'dump_cache',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
2066 '--result', '<@(_outputs)', 2064 '--result', '<@(_outputs)',
2067 '--isolate', 'net_unittests.isolate', 2065 '--isolate', 'net_unittests.isolate',
2068 ], 2066 ],
2069 }, 2067 },
2070 ], 2068 ],
2071 }, 2069 },
2072 ], 2070 ],
2073 }], 2071 }],
2074 ], 2072 ],
2075 } 2073 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | sql/sql.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698