OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "build/build_config.h" |
5 #include "chrome/test/base/test_switches.h" | 6 #include "chrome/test/base/test_switches.h" |
6 | 7 |
7 namespace switches { | 8 namespace switches { |
8 | 9 |
9 // Also emit full event trace logs for successful tests. | 10 // Also emit full event trace logs for successful tests. |
10 const char kAlsoEmitSuccessLogs[] = "also-emit-success-logs"; | 11 const char kAlsoEmitSuccessLogs[] = "also-emit-success-logs"; |
11 | 12 |
12 #if defined(OS_WIN) | 13 #if defined(OS_WIN) |
13 // Force browser tests to run in Ash/Metro on Windows 8. | 14 // Force browser tests to run in Ash/Metro on Windows 8. |
14 const char kAshBrowserTests[] = "ash-browsertests"; | 15 const char kAshBrowserTests[] = "ash-browsertests"; |
15 #endif | 16 #endif |
16 | 17 |
17 #if defined(ENABLE_PLUGINS) | 18 #if defined(ENABLE_PLUGINS) |
18 // Makes browser pixel tests overwrite the reference if it does not match. | 19 // Makes browser pixel tests overwrite the reference if it does not match. |
19 const char kRebaselinePixelTests[] = "rebaseline-pixel-tests"; | 20 const char kRebaselinePixelTests[] = "rebaseline-pixel-tests"; |
20 #endif | 21 #endif |
21 | 22 |
22 } // namespace switches | 23 } // namespace switches |
OLD | NEW |