diff options
author | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-17 20:14:06 +0000 |
---|---|---|
committer | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-17 20:14:06 +0000 |
commit | 8da2a7eed4598ad578d6da528541ab8b7654f75e (patch) | |
tree | dba559408d2cb14bb2da2e4368253020573f97ad | |
parent | 4809a82220d8572138bb88f4722ab81fd5fa4cc1 (diff) | |
download | chromium_src-8da2a7eed4598ad578d6da528541ab8b7654f75e.zip chromium_src-8da2a7eed4598ad578d6da528541ab8b7654f75e.tar.gz chromium_src-8da2a7eed4598ad578d6da528541ab8b7654f75e.tar.bz2 |
Revert 66501 - Removing now-redundant precompile files.
This broke the windows compile as I forgot to remove gyp file references to them.
BUG=none
TEST=it compiles
Review URL: http://codereview.chromium.org/5171002
TBR=siggi@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66509 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ceee/ie/common/precompile.cc | 6 | ||||
-rw-r--r-- | ceee/ie/common/precompile.h | 14 | ||||
-rw-r--r-- | ceee/ie/testing/precompile.cc | 6 | ||||
-rw-r--r-- | ceee/ie/testing/precompile.h | 19 | ||||
-rw-r--r-- | ceee/testing/manual/ie_broker/call_broker/precompile.cc | 6 | ||||
-rw-r--r-- | ceee/testing/manual/ie_broker/call_broker/precompile.h | 13 |
6 files changed, 64 insertions, 0 deletions
diff --git a/ceee/ie/common/precompile.cc b/ceee/ie/common/precompile.cc new file mode 100644 index 0000000..46a23d0 --- /dev/null +++ b/ceee/ie/common/precompile.cc @@ -0,0 +1,6 @@ +// Copyright (c) 2010 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. +// +// Precompile generator file. +#include "ceee/ie/common/precompile.h" diff --git a/ceee/ie/common/precompile.h b/ceee/ie/common/precompile.h new file mode 100644 index 0000000..5a934ee --- /dev/null +++ b/ceee/ie/common/precompile.h @@ -0,0 +1,14 @@ +// Copyright (c) 2010 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. +// +// Precompile header for CEEE. + +#ifndef CEEE_IE_COMMON_PRECOMPILE_H_ +#define CEEE_IE_COMMON_PRECOMPILE_H_ + +#include <atlbase.h> +#include <atlcom.h> +#include <atlstr.h> + +#endif // CEEE_IE_COMMON_PRECOMPILE_H_ diff --git a/ceee/ie/testing/precompile.cc b/ceee/ie/testing/precompile.cc new file mode 100644 index 0000000..975a615 --- /dev/null +++ b/ceee/ie/testing/precompile.cc @@ -0,0 +1,6 @@ +// Copyright (c) 2010 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. +// +// Precompile generator file. +#include "ceee/ie/testing/precompile.h" diff --git a/ceee/ie/testing/precompile.h b/ceee/ie/testing/precompile.h new file mode 100644 index 0000000..ef85751 --- /dev/null +++ b/ceee/ie/testing/precompile.h @@ -0,0 +1,19 @@ +// Copyright (c) 2010 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. +// +// Precompile header for IE CEEE unittests. + +#ifndef CEEE_IE_TESTING_PRECOMPILE_H_ +#define CEEE_IE_TESTING_PRECOMPILE_H_ + +#include <atlbase.h> +#include <atlcom.h> +#include <atlstr.h> + +#include "ceee/testing/utils/mock_com.h" +#include "ceee/testing/utils/test_utils.h" +#include "testing/gmock/include/gmock/gmock.h" +#include "testing/gtest/include/gtest/gtest.h" + +#endif // CEEE_IE_TESTING_PRECOMPILE_H_ diff --git a/ceee/testing/manual/ie_broker/call_broker/precompile.cc b/ceee/testing/manual/ie_broker/call_broker/precompile.cc new file mode 100644 index 0000000..76d5c35 --- /dev/null +++ b/ceee/testing/manual/ie_broker/call_broker/precompile.cc @@ -0,0 +1,6 @@ +// Copyright (c) 2010 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. +// +// Precompile generator file. +#include "ceee/testing/manual/ie_broker/call_broker/precompile.h" diff --git a/ceee/testing/manual/ie_broker/call_broker/precompile.h b/ceee/testing/manual/ie_broker/call_broker/precompile.h new file mode 100644 index 0000000..ca9238e --- /dev/null +++ b/ceee/testing/manual/ie_broker/call_broker/precompile.h @@ -0,0 +1,13 @@ +// Copyright (c) 2010 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. +// +// Precompile header for IE broker manual test to call the broker. + +#ifndef CEEE_TESTING_MANUAL_IE_BROKER_CALL_BROKER_PRECOMPILE_H_ +#define CEEE_TESTING_MANUAL_IE_BROKER_CALL_BROKER_PRECOMPILE_H_ + +#include <stdio.h> +#include <tchar.h> + +#endif // CEEE_TESTING_MANUAL_IE_BROKER_CALL_BROKER_PRECOMPILE_H_ |