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

Side by Side Diff: build/common.gypi

Issue 491050: Reverting sdk7 landing AGAIN!!!... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years 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 | « no previous file | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 'variables': { 9 'variables': {
10 # .gyp files should set chromium_code to 1 if they build Chromium-specific 10 # .gyp files should set chromium_code to 1 if they build Chromium-specific
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 '_WINDOWS', 898 '_WINDOWS',
899 '_HAS_EXCEPTIONS=0', 899 '_HAS_EXCEPTIONS=0',
900 'NOMINMAX', 900 'NOMINMAX',
901 '_CRT_RAND_S', 901 '_CRT_RAND_S',
902 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', 902 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
903 'WIN32_LEAN_AND_MEAN', 903 'WIN32_LEAN_AND_MEAN',
904 '_SECURE_ATL', 904 '_SECURE_ATL',
905 '_HAS_TR1=0', 905 '_HAS_TR1=0',
906 ], 906 ],
907 'msvs_system_include_dirs': [ 907 'msvs_system_include_dirs': [
908 '<(DEPTH)/third_party/platformsdk_win7/files/Include', 908 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include',
909 '$(VSInstallDir)/VC/atlmfc/include', 909 '$(VSInstallDir)/VC/atlmfc/include',
910 ], 910 ],
911 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], 911 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
912 'msvs_disabled_warnings': [4396, 4503, 4819], 912 'msvs_disabled_warnings': [4396, 4503, 4819],
913 'msvs_settings': { 913 'msvs_settings': {
914 'VCCLCompilerTool': { 914 'VCCLCompilerTool': {
915 'MinimalRebuild': 'false', 915 'MinimalRebuild': 'false',
916 'ExceptionHandling': '0', 916 'ExceptionHandling': '0',
917 'BufferSecurityCheck': 'true', 917 'BufferSecurityCheck': 'true',
918 'EnableFunctionLevelLinking': 'true', 918 'EnableFunctionLevelLinking': 'true',
919 'RuntimeTypeInfo': 'false', 919 'RuntimeTypeInfo': 'false',
920 'WarningLevel': '3', 920 'WarningLevel': '3',
921 'WarnAsError': 'true', 921 'WarnAsError': 'true',
922 'DebugInformationFormat': '3', 922 'DebugInformationFormat': '3',
923 'conditions': [ 923 'conditions': [
924 [ 'msvs_multi_core_compile', { 924 [ 'msvs_multi_core_compile', {
925 'AdditionalOptions': '/MP', 925 'AdditionalOptions': '/MP',
926 }], 926 }],
927 ], 927 ],
928 }, 928 },
929 'VCLibrarianTool': { 929 'VCLibrarianTool': {
930 'AdditionalOptions': '/ignore:4221', 930 'AdditionalOptions': '/ignore:4221',
931 'AdditionalLibraryDirectories': 931 'AdditionalLibraryDirectories':
932 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'], 932 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
933 }, 933 },
934 'VCLinkerTool': { 934 'VCLinkerTool': {
935 'AdditionalDependencies': [ 935 'AdditionalDependencies': [
936 'wininet.lib', 936 'wininet.lib',
937 'version.lib', 937 'version.lib',
938 'msimg32.lib', 938 'msimg32.lib',
939 'ws2_32.lib', 939 'ws2_32.lib',
940 'usp10.lib', 940 'usp10.lib',
941 'psapi.lib', 941 'psapi.lib',
942 'dbghelp.lib', 942 'dbghelp.lib',
943 ], 943 ],
944 'AdditionalLibraryDirectories': 944 'AdditionalLibraryDirectories':
945 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'], 945 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
946 'GenerateDebugInformation': 'true', 946 'GenerateDebugInformation': 'true',
947 'MapFileName': '$(OutDir)\\$(TargetName).map', 947 'MapFileName': '$(OutDir)\\$(TargetName).map',
948 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', 948 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
949 'FixedBaseAddress': '1', 949 'FixedBaseAddress': '1',
950 # SubSystem values: 950 # SubSystem values:
951 # 0 == not set 951 # 0 == not set
952 # 1 == /SUBSYSTEM:CONSOLE 952 # 1 == /SUBSYSTEM:CONSOLE
953 # 2 == /SUBSYSTEM:WINDOWS 953 # 2 == /SUBSYSTEM:WINDOWS
954 # Most of the executables we'll ever create are tests 954 # Most of the executables we'll ever create are tests
955 # and utilities with console output. 955 # and utilities with console output.
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 # and therefore SYMROOT, needs to be set at the project level. 1088 # and therefore SYMROOT, needs to be set at the project level.
1089 'SYMROOT': '<(DEPTH)/xcodebuild', 1089 'SYMROOT': '<(DEPTH)/xcodebuild',
1090 }, 1090 },
1091 } 1091 }
1092 1092
1093 # Local Variables: 1093 # Local Variables:
1094 # tab-width:2 1094 # tab-width:2
1095 # indent-tabs-mode:nil 1095 # indent-tabs-mode:nil
1096 # End: 1096 # End:
1097 # vim: set expandtab tabstop=2 shiftwidth=2: 1097 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698