1 : // Copyright 2013 Google Inc. All Rights Reserved.
2 : //
3 : // Licensed under the Apache License, Version 2.0 (the "License");
4 : // you may not use this file except in compliance with the License.
5 : // You may obtain a copy of the License at
6 : //
7 : // http://www.apache.org/licenses/LICENSE-2.0
8 : //
9 : // Unless required by applicable law or agreed to in writing, software
10 : // distributed under the License is distributed on an "AS IS" BASIS,
11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 : // See the License for the specific language governing permissions and
13 : // limitations under the License.
14 :
15 : #include "syzygy/testing/toolchain.h"
16 :
17 : #include "base/environment.h"
18 : #include "base/strings/string_split.h"
19 : #include "base/strings/string_util.h"
20 : #include "base/strings/utf_string_conversions.h"
21 : #include "gtest/gtest.h"
22 :
23 m : namespace testing {
24 :
25 : // This brings in auto-generated data in the form of macro definitions. It is
26 : // included here to keep the scope as narrow as possible.
27 : #include "syzygy/testing/toolchain_paths.gen"
28 :
29 m : const wchar_t kToolchainWrapperPath[] = TOOLCHAIN_WRAPPER_PATH;
30 :
31 : // Undefine the macros brought in from toolchain_paths.gen.
32 : #undef TOOLCHAIN_WRAPPER_PATH
33 :
34 m : } // namespace testing
|