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 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 ['include', '^http/http_version\\.h$'], | 1093 ['include', '^http/http_version\\.h$'], |
1094 ['include', '^url_request/url_request_job_manager\\.'], | 1094 ['include', '^url_request/url_request_job_manager\\.'], |
1095 ['include', '^proxy/dhcp_proxy_script_fetcher\\.'], | 1095 ['include', '^proxy/dhcp_proxy_script_fetcher\\.'], |
1096 ['include', '^proxy/polling_proxy_config_service\\.'], | 1096 ['include', '^proxy/polling_proxy_config_service\\.'], |
1097 ['include', '^proxy/proxy_config\\.'], | 1097 ['include', '^proxy/proxy_config\\.'], |
1098 ['include', '^proxy/proxy_config_service_ios\\.'], | 1098 ['include', '^proxy/proxy_config_service_ios\\.'], |
1099 ['include', '^proxy/proxy_service\\.'], | 1099 ['include', '^proxy/proxy_service\\.'], |
1100 ], | 1100 ], |
1101 }, | 1101 }, |
1102 ], | 1102 ], |
| 1103 ['OS=="android" and _toolset=="target"', { |
| 1104 'dependencies': [ |
| 1105 'net_java', |
| 1106 ], |
| 1107 'export_dependent_settings': [ |
| 1108 'net_java', |
| 1109 ], |
| 1110 }], |
1103 [ 'OS == "android"', { | 1111 [ 'OS == "android"', { |
1104 'dependencies': [ | 1112 'dependencies': [ |
1105 '../third_party/openssl/openssl.gyp:openssl', | 1113 '../third_party/openssl/openssl.gyp:openssl', |
1106 'net_jni_headers', | 1114 'net_jni_headers', |
1107 ], | 1115 ], |
1108 'sources!': [ | 1116 'sources!': [ |
1109 'base/dnssec_chain_verifier.cc', | 1117 'base/dnssec_chain_verifier.cc', |
1110 'base/openssl_memory_private_key_store.cc', | 1118 'base/openssl_memory_private_key_store.cc', |
1111 ], | 1119 ], |
1112 }, { # else OS! = "android" | 1120 }, { # else OS! = "android" |
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2071 'includes': [ '../build/jni_generator.gypi' ], | 2079 'includes': [ '../build/jni_generator.gypi' ], |
2072 }, | 2080 }, |
2073 { | 2081 { |
2074 'target_name': 'net_java', | 2082 'target_name': 'net_java', |
2075 'type': 'none', | 2083 'type': 'none', |
2076 'variables': { | 2084 'variables': { |
2077 'package_name': 'net', | 2085 'package_name': 'net', |
2078 'java_in_dir': '../net/android/java', | 2086 'java_in_dir': '../net/android/java', |
2079 }, | 2087 }, |
2080 'dependencies': [ | 2088 'dependencies': [ |
2081 '../base/base.gyp:base_java', | 2089 '../base/base.gyp:base', |
2082 ], | 2090 ], |
2083 'export_dependent_settings': [ | 2091 'export_dependent_settings': [ |
2084 '../base/base.gyp:base_java', | 2092 '../base/base.gyp:base', |
2085 ], | 2093 ], |
2086 'includes': [ '../build/java.gypi' ], | 2094 'includes': [ '../build/java.gypi' ], |
2087 }, | 2095 }, |
2088 { | 2096 { |
2089 'target_name': 'net_javatests', | 2097 'target_name': 'net_javatests', |
2090 'type': 'none', | 2098 'type': 'none', |
2091 'variables': { | 2099 'variables': { |
2092 'package_name': 'net_javatests', | 2100 'package_name': 'net_javatests', |
2093 'java_in_dir': '../net/android/javatests', | 2101 'java_in_dir': '../net/android/javatests', |
2094 }, | 2102 }, |
2095 'dependencies': [ | 2103 'dependencies': [ |
2096 '../base/base.gyp:base_java', | 2104 '../base/base.gyp:base', |
2097 '../base/base.gyp:base_java_test_support', | 2105 '../base/base.gyp:base_java_test_support', |
| 2106 'net_java', |
2098 ], | 2107 ], |
2099 'export_dependent_settings': [ | 2108 'export_dependent_settings': [ |
2100 '../base/base.gyp:base_java', | 2109 '../base/base.gyp:base', |
2101 '../base/base.gyp:base_java_test_support', | 2110 '../base/base.gyp:base_java_test_support', |
| 2111 'net_java', |
2102 ], | 2112 ], |
2103 'includes': [ '../build/java.gypi' ], | 2113 'includes': [ '../build/java.gypi' ], |
2104 }, | 2114 }, |
2105 ], | 2115 ], |
2106 }], | 2116 }], |
2107 # Special target to wrap a gtest_target_type==shared_library | 2117 # Special target to wrap a gtest_target_type==shared_library |
2108 # net_unittests into an android apk for execution. | 2118 # net_unittests into an android apk for execution. |
2109 # See base.gyp for TODO(jrg)s about this strategy. | 2119 # See base.gyp for TODO(jrg)s about this strategy. |
2110 ['OS == "android" and gtest_target_type == "shared_library"', { | 2120 ['OS == "android" and gtest_target_type == "shared_library"', { |
2111 'targets': [ | 2121 'targets': [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2180 '--result', '<@(_outputs)', | 2190 '--result', '<@(_outputs)', |
2181 '--isolate', 'net_unittests.isolate', | 2191 '--isolate', 'net_unittests.isolate', |
2182 ], | 2192 ], |
2183 }, | 2193 }, |
2184 ], | 2194 ], |
2185 }, | 2195 }, |
2186 ], | 2196 ], |
2187 }], | 2197 }], |
2188 ], | 2198 ], |
2189 } | 2199 } |
OLD | NEW |