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

Side by Side Diff: net/net.gyp

Issue 8394002: exclude the linux files that are not needed on openbsd (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use sources! Created 9 years, 2 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') | no next file » | 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) 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 'process_outputs_as_sources': 1, 735 'process_outputs_as_sources': 1,
736 }, 736 },
737 ], 737 ],
738 'conditions': [ 738 'conditions': [
739 ['chromeos==1', { 739 ['chromeos==1', {
740 'sources!': [ 740 'sources!': [
741 'proxy/proxy_config_service_linux.cc', 741 'proxy/proxy_config_service_linux.cc',
742 'proxy/proxy_config_service_linux.h', 742 'proxy/proxy_config_service_linux.h',
743 ], 743 ],
744 }], 744 }],
745 ['OS=="openbsd"', {
746 'sources': [
747 'base/platform_mime_util_linux.cc',
748 ],
749 }],
750 ['use_kerberos==1', { 745 ['use_kerberos==1', {
751 'defines': [ 746 'defines': [
752 'USE_KERBEROS', 747 'USE_KERBEROS',
753 ], 748 ],
754 'conditions': [ 749 'conditions': [
755 ['linux_link_kerberos==1', { 750 ['linux_link_kerberos==1', {
756 'link_settings': { 751 'link_settings': {
757 'ldflags': [ 752 'ldflags': [
758 '<!@(krb5-config --libs gssapi)', 753 '<!@(krb5-config --libs gssapi)',
759 ], 754 ],
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 ['use_openssl==1', { 826 ['use_openssl==1', {
832 'dependencies': [ 827 'dependencies': [
833 '../third_party/openssl/openssl.gyp:openssl', 828 '../third_party/openssl/openssl.gyp:openssl',
834 ], 829 ],
835 }, 830 },
836 { # else use_openssl==0, use NSS 831 { # else use_openssl==0, use NSS
837 'dependencies': [ 832 'dependencies': [
838 '../build/linux/system.gyp:ssl', 833 '../build/linux/system.gyp:ssl',
839 ], 834 ],
840 }], 835 }],
841 ['OS!="openbsd"', { 836 ['OS=="openbsd"', {
837 'sources!': [
838 'base/network_change_notifier_linux.cc',
839 'base/network_change_notifier_netlink_linux.cc',
840 'proxy/proxy_config_service_linux.cc',
841 ],
842 },{
842 'dependencies': [ 843 'dependencies': [
843 '../build/linux/system.gyp:libresolv', 844 '../build/linux/system.gyp:libresolv',
844 ], 845 ],
845 }], 846 }],
846 ['OS=="solaris"', { 847 ['OS=="solaris"', {
847 'link_settings': { 848 'link_settings': {
848 'ldflags': [ 849 'ldflags': [
849 '-R/usr/lib/mps', 850 '-R/usr/lib/mps',
850 ], 851 ],
851 }, 852 },
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
1622 'tools/dump_cache/url_to_filename_encoder.cc', 1623 'tools/dump_cache/url_to_filename_encoder.cc',
1623 'tools/dump_cache/url_to_filename_encoder.h', 1624 'tools/dump_cache/url_to_filename_encoder.h',
1624 'tools/dump_cache/url_utilities.h', 1625 'tools/dump_cache/url_utilities.h',
1625 'tools/dump_cache/url_utilities.cc', 1626 'tools/dump_cache/url_utilities.cc',
1626 ], 1627 ],
1627 }, 1628 },
1628 ], 1629 ],
1629 }], 1630 }],
1630 ], 1631 ],
1631 } 1632 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698