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

Side by Side Diff: net/net.gyp

Issue 8598010: replace platform conditions with os_posix and os_bsd where applicable (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 9 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
OLDNEW
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': [
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 ['use_openssl==1', { 839 ['use_openssl==1', {
840 'dependencies': [ 840 'dependencies': [
841 '../third_party/openssl/openssl.gyp:openssl', 841 '../third_party/openssl/openssl.gyp:openssl',
842 ], 842 ],
843 }, 843 },
844 { # else use_openssl==0, use NSS 844 { # else use_openssl==0, use NSS
845 'dependencies': [ 845 'dependencies': [
846 '../build/linux/system.gyp:ssl', 846 '../build/linux/system.gyp:ssl',
847 ], 847 ],
848 }], 848 }],
849 ['OS=="openbsd"', { 849 ['os_bsd==1', {
850 'sources!': [ 850 'sources!': [
851 'base/network_change_notifier_linux.cc', 851 'base/network_change_notifier_linux.cc',
852 'base/network_change_notifier_netlink_linux.cc', 852 'base/network_change_notifier_netlink_linux.cc',
853 'proxy/proxy_config_service_linux.cc', 853 'proxy/proxy_config_service_linux.cc',
854 ], 854 ],
855 },{ 855 },{
856 'dependencies': [ 856 'dependencies': [
857 '../build/linux/system.gyp:libresolv', 857 '../build/linux/system.gyp:libresolv',
858 ], 858 ],
859 }], 859 }],
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
1683 'tools/dump_cache/url_to_filename_encoder.cc', 1683 'tools/dump_cache/url_to_filename_encoder.cc',
1684 'tools/dump_cache/url_to_filename_encoder.h', 1684 'tools/dump_cache/url_to_filename_encoder.h',
1685 'tools/dump_cache/url_utilities.h', 1685 'tools/dump_cache/url_utilities.h',
1686 'tools/dump_cache/url_utilities.cc', 1686 'tools/dump_cache/url_utilities.cc',
1687 ], 1687 ],
1688 }, 1688 },
1689 ], 1689 ],
1690 }], 1690 }],
1691 ], 1691 ],
1692 } 1692 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698