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

Side by Side Diff: net/net.gyp

Issue 7344022: Add COMPONENT_BUILD global define. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | Annotate | Revision Log
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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 'base/winsock_init.h', 815 'base/winsock_init.h',
816 'base/winsock_util.cc', 816 'base/winsock_util.cc',
817 'base/winsock_util.h', 817 'base/winsock_util.h',
818 'proxy/proxy_resolver_winhttp.cc', 818 'proxy/proxy_resolver_winhttp.cc',
819 'proxy/proxy_resolver_winhttp.h', 819 'proxy/proxy_resolver_winhttp.h',
820 ], 820 ],
821 }, 821 },
822 ], 822 ],
823 [ 'component == "shared_library"', { 823 [ 'component == "shared_library"', {
824 'defines': [ 824 'defines': [
825 'NET_DLL',
826 'NET_IMPLEMENTATION', 825 'NET_IMPLEMENTATION',
827 ], 826 ],
828 'direct_dependent_settings': {
829 'defines': [
830 'NET_DLL',
831 ],
832 },
833 'conditions': [ 827 'conditions': [
rvargas (doing something else) 2011/07/12 22:45:55 We can remove this block.
834 [ 'OS == "win"', { 828 [ 'OS == "win"', {
835 'msvs_disabled_warnings': [ 829 'msvs_disabled_warnings': [
836 # class 'std::xx' needs to have dll-interface. 830 # class 'std::xx' needs to have dll-interface.
837 4251, 831 4251,
838 ], 832 ],
839 'direct_dependent_settings': { 833 'direct_dependent_settings': {
840 'msvs_disabled_warnings': [ 834 'msvs_disabled_warnings': [
841 4251, 835 4251,
842 ], 836 ],
843 }, 837 },
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1494 'tools/dump_cache/url_to_filename_encoder.cc', 1488 'tools/dump_cache/url_to_filename_encoder.cc',
1495 'tools/dump_cache/url_to_filename_encoder.h', 1489 'tools/dump_cache/url_to_filename_encoder.h',
1496 'tools/dump_cache/url_utilities.h', 1490 'tools/dump_cache/url_utilities.h',
1497 'tools/dump_cache/url_utilities.cc', 1491 'tools/dump_cache/url_utilities.cc',
1498 ], 1492 ],
1499 }, 1493 },
1500 ], 1494 ],
1501 }], 1495 }],
1502 ], 1496 ],
1503 } 1497 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698