diff options
author | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-01 23:45:30 +0000 |
---|---|---|
committer | bradnelson@chromium.org <bradnelson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-01 23:45:30 +0000 |
commit | 78263c1774421e5f451a549e754390cfbcc6b27e (patch) | |
tree | a0f904764e2751778343ee1ef9fc888bfe2212b7 /build | |
parent | 29545125b770f4b8ddeaccc702561a64c886f616 (diff) | |
download | chromium_src-78263c1774421e5f451a549e754390cfbcc6b27e.zip chromium_src-78263c1774421e5f451a549e754390cfbcc6b27e.tar.gz chromium_src-78263c1774421e5f451a549e754390cfbcc6b27e.tar.bz2 |
Adding x64 configurations for windows.
These do not build, but are for experimentation.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/344041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30683 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index f9399cd..ad2908a 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -442,6 +442,22 @@ 'inherit_from': ['Release'], 'defines': ['NO_TCMALLOC'], }, + 'Debug_x64': { + 'inherit_from': ['Debug'], + 'msvs_configuration_platform': 'x64', + }, + 'Release_x64': { + 'inherit_from': ['Release'], + 'msvs_configuration_platform': 'x64', + }, + 'Purify_x64': { + 'inherit_from': ['Purify'], + 'msvs_configuration_platform': 'x64', + }, + 'Release - no tcmalloc_x64': { + 'inherit_from': ['Release - no tcmalloc'], + 'msvs_configuration_platform': 'x64', + }, }], ], }, |