diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 20:55:11 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 20:55:11 +0000 |
commit | ffe88f7578d07e1924d88abc9e4b6e3d112e6345 (patch) | |
tree | 123976c73b7f49ba66efd8e394c1797bbdef115c /chrome/tools/build/win | |
parent | db5e2d909a38d03b013a3b581e394091079b57d4 (diff) | |
download | chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.zip chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.tar.gz chromium_src-ffe88f7578d07e1924d88abc9e4b6e3d112e6345.tar.bz2 |
Delete all precompiled support. It is causing more harm than good, especially when define changes.
TEST=none
BUG=20889
Review URL: http://codereview.chromium.org/171118
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25511 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/build/win')
-rw-r--r-- | chrome/tools/build/win/precompiled.cc | 2 | ||||
-rw-r--r-- | chrome/tools/build/win/precompiled.h | 40 | ||||
-rw-r--r-- | chrome/tools/build/win/precompiled.vsprops | 15 | ||||
-rw-r--r-- | chrome/tools/build/win/precompiled_wtl.cc | 2 | ||||
-rw-r--r-- | chrome/tools/build/win/precompiled_wtl.h | 19 | ||||
-rw-r--r-- | chrome/tools/build/win/precompiled_wtl.vsprops | 15 |
6 files changed, 0 insertions, 93 deletions
diff --git a/chrome/tools/build/win/precompiled.cc b/chrome/tools/build/win/precompiled.cc deleted file mode 100644 index b09ed13..0000000 --- a/chrome/tools/build/win/precompiled.cc +++ /dev/null @@ -1,2 +0,0 @@ -// This file exists purely as a means to generate precompiled.pch -#include "precompiled.h" diff --git a/chrome/tools/build/win/precompiled.h b/chrome/tools/build/win/precompiled.h deleted file mode 100644 index 4b8e79b..0000000 --- a/chrome/tools/build/win/precompiled.h +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// -// This header file is pre-compiled and added to the cl.exe command line for -// each source file. You should not include it explicitly. Instead, you -// should ensure that your source files specify all of their include files -// explicitly so they may be used without this pre-compiled header. -// -// To make use of this header file in a vcproj, just add precompiled.cc as a -// build target, and modify its build properties to enable /Yc for that file -// only. Then add the precompiled.vsprops property sheet to your vcproj. -// - -// windows headers -// TODO: when used, winsock2.h must be included before windows.h or -// the build blows up. The best fix is to define WIN32_LEAN_AND_MEAN. -// The best workaround is to define _WINSOCKAPI_. That's what winsock2.h does. -#include <winsock2.h> -#include <windows.h> -#include <shellapi.h> -#include <shlobj.h> -#include <tchar.h> - -// runtime headers -#include <cassert> -#include <climits> -#include <cstddef> -#include <cstdlib> -#include <cstring> -#include <memory.h> - -// Usual STL -#include <algorithm> -#include <list> -#include <map> -#include <string> -#include <strstream> -#include <vector> diff --git a/chrome/tools/build/win/precompiled.vsprops b/chrome/tools/build/win/precompiled.vsprops deleted file mode 100644 index 464ea32..0000000 --- a/chrome/tools/build/win/precompiled.vsprops +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioPropertySheet - ProjectType="Visual C++" - Version="8.00" - Name="precompiled" - > - <Tool - Name="VCCLCompilerTool" - AdditionalIncludeDirectories=""$(SolutionDir)tools\build\win"" - UsePrecompiledHeader="2" - PrecompiledHeaderThrough="precompiled.h" - PrecompiledHeaderFile="$(IntDir)\precompiled.pch" - ForcedIncludeFiles="precompiled.h" - /> -</VisualStudioPropertySheet> diff --git a/chrome/tools/build/win/precompiled_wtl.cc b/chrome/tools/build/win/precompiled_wtl.cc deleted file mode 100644 index 0f6272d..0000000 --- a/chrome/tools/build/win/precompiled_wtl.cc +++ /dev/null @@ -1,2 +0,0 @@ -// This file exists purely as a means to generate precompiled.pch -#include "precompiled_wtl.h" diff --git a/chrome/tools/build/win/precompiled_wtl.h b/chrome/tools/build/win/precompiled_wtl.h deleted file mode 100644 index 55a5664..0000000 --- a/chrome/tools/build/win/precompiled_wtl.h +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// See precompiled.h for info on using this file, substituting references to -// "precompiled" with "precompiled_wtl" - -#include "chrome/tools/build/win/precompiled.h" - -// ATL/WTL headers -#include <atlbase.h> -#include <atlapp.h> -#include <atlwin.h> -#include <atldlgs.h> -#include <atlframe.h> -#include <atlmisc.h> -#include <atlctrls.h> -#include <atlcrack.h> -#include <atltheme.h> diff --git a/chrome/tools/build/win/precompiled_wtl.vsprops b/chrome/tools/build/win/precompiled_wtl.vsprops deleted file mode 100644 index 1e9a915..0000000 --- a/chrome/tools/build/win/precompiled_wtl.vsprops +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioPropertySheet - ProjectType="Visual C++" - Version="8.00" - Name="precompiled_wtl" - > - <Tool - Name="VCCLCompilerTool" - AdditionalIncludeDirectories=""$(SolutionDir)tools\build\win"" - UsePrecompiledHeader="2" - PrecompiledHeaderThrough="precompiled_wtl.h" - PrecompiledHeaderFile="$(IntDir)\precompiled_wtl.pch" - ForcedIncludeFiles="precompiled_wtl.h" - /> -</VisualStudioPropertySheet> |