OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': [ |
11 ['chromeos==1', { | 11 ['chromeos==1', { |
12 # Disable Kerberos on ChromeOS, at least for now. | 12 # Disable Kerberos on ChromeOS, at least for now. |
13 # It needs configuration (krb5.conf and so on). | 13 # It needs configuration (krb5.conf and so on). |
14 'use_kerberos%': 0, | 14 'use_kerberos%': 0, |
15 }, { # chromeos == 0 | 15 }, { # chromeos == 0 |
16 'use_kerberos%': 1, | 16 'use_kerberos%': 1, |
17 }], | 17 }], |
18 ], | 18 ], |
19 }, | 19 }, |
| 20 'includes': [ |
| 21 '../build/win_precompile.gypi', |
| 22 ], |
20 'targets': [ | 23 'targets': [ |
21 { | 24 { |
22 'target_name': 'net', | 25 'target_name': 'net', |
23 'type': '<(component)', | 26 'type': '<(component)', |
24 'dependencies': [ | 27 'dependencies': [ |
25 '../base/base.gyp:base', | 28 '../base/base.gyp:base', |
26 '../base/base.gyp:base_i18n', | 29 '../base/base.gyp:base_i18n', |
27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 30 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
28 '../build/temp_gyp/googleurl.gyp:googleurl', | 31 '../build/temp_gyp/googleurl.gyp:googleurl', |
29 '../crypto/crypto.gyp:crypto', | 32 '../crypto/crypto.gyp:crypto', |
(...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 'tools/dump_cache/url_to_filename_encoder.cc', | 1554 'tools/dump_cache/url_to_filename_encoder.cc', |
1552 'tools/dump_cache/url_to_filename_encoder.h', | 1555 'tools/dump_cache/url_to_filename_encoder.h', |
1553 'tools/dump_cache/url_utilities.h', | 1556 'tools/dump_cache/url_utilities.h', |
1554 'tools/dump_cache/url_utilities.cc', | 1557 'tools/dump_cache/url_utilities.cc', |
1555 ], | 1558 ], |
1556 }, | 1559 }, |
1557 ], | 1560 ], |
1558 }], | 1561 }], |
1559 ], | 1562 ], |
1560 } | 1563 } |
OLD | NEW |