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 # Defines an extra set of libs with an alternate copy of org.apache.http. | 8 # Defines an extra set of libs with an alternate copy of org.apache.http. |
9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. | 9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. |
10 'net_test_extra_libs': [], | 10 'net_test_extra_libs': [], |
jbudorick
2015/08/19 20:22:47
Removing this once no downstream targets use it.
jbudorick
2015/08/19 20:23:24
er... got this in patchset 3 but forgot about the
| |
11 'linux_link_kerberos%': 0, | 11 'linux_link_kerberos%': 0, |
12 'conditions': [ | 12 'conditions': [ |
13 ['chromeos==1 or embedded==1 or OS=="ios"', { | 13 ['chromeos==1 or embedded==1 or OS=="ios"', { |
14 # Disable Kerberos on ChromeOS and iOS, at least for now. | 14 # Disable Kerberos on ChromeOS and iOS, at least for now. |
15 # It needs configuration (krb5.conf and so on). | 15 # It needs configuration (krb5.conf and so on). |
16 'use_kerberos%': 0, | 16 'use_kerberos%': 0, |
17 }, { # chromeos == 0 and embedded==0 and OS!="ios" | 17 }, { # chromeos == 0 and embedded==0 and OS!="ios" |
18 'use_kerberos%': 1, | 18 'use_kerberos%': 1, |
19 }], | 19 }], |
20 ['OS=="android" and target_arch != "ia32"', { | 20 ['OS=="android" and target_arch != "ia32"', { |
(...skipping 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1415 ], | 1415 ], |
1416 'includes': [ '../build/java_aidl.gypi' ], | 1416 'includes': [ '../build/java_aidl.gypi' ], |
1417 }, | 1417 }, |
1418 { | 1418 { |
1419 'target_name': 'net_java_test_support', | 1419 'target_name': 'net_java_test_support', |
1420 'type': 'none', | 1420 'type': 'none', |
1421 'variables': { | 1421 'variables': { |
1422 'java_in_dir': '../net/test/android/javatests', | 1422 'java_in_dir': '../net/test/android/javatests', |
1423 }, | 1423 }, |
1424 'dependencies': [ | 1424 'dependencies': [ |
1425 'net_java', | |
1425 'net_test_support', | 1426 'net_test_support', |
1426 'url_request_failed_job_java', | 1427 'url_request_failed_job_java', |
1427 '../base/base.gyp:base_java', | 1428 '../base/base.gyp:base_java', |
1428 'net_java', | 1429 '../third_party/android_tools/android_tools.gyp:legacy_http_javalib' , |
1429 '<@(net_test_extra_libs)', | |
1430 ], | 1430 ], |
1431 'includes': [ '../build/java.gypi' ], | 1431 'includes': [ '../build/java.gypi' ], |
1432 }, | 1432 }, |
1433 { | 1433 { |
1434 'target_name': 'url_request_failed_job_java', | 1434 'target_name': 'url_request_failed_job_java', |
1435 'type': 'none', | 1435 'type': 'none', |
1436 'variables': { | 1436 'variables': { |
1437 'source_file': 'test/url_request/url_request_failed_job.h', | 1437 'source_file': 'test/url_request/url_request_failed_job.h', |
1438 }, | 1438 }, |
1439 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 1439 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1590 '../build/isolate.gypi', | 1590 '../build/isolate.gypi', |
1591 ], | 1591 ], |
1592 'sources': [ | 1592 'sources': [ |
1593 'net_unittests.isolate', | 1593 'net_unittests.isolate', |
1594 ], | 1594 ], |
1595 }, | 1595 }, |
1596 ], | 1596 ], |
1597 }], | 1597 }], |
1598 ], | 1598 ], |
1599 } | 1599 } |
OLD | NEW |