OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_COMMON_CHROME_PATHS_H__ | 5 #ifndef CHROME_COMMON_CHROME_PATHS_H__ |
6 #define CHROME_COMMON_CHROME_PATHS_H__ | 6 #define CHROME_COMMON_CHROME_PATHS_H__ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 // binary data (e.g., html files and images | 93 // binary data (e.g., html files and images |
94 // used by interal pages). | 94 // used by interal pages). |
95 #if defined(OS_CHROMEOS) | 95 #if defined(OS_CHROMEOS) |
96 FILE_CHROMEOS_API, // Full path to chrome os api shared object. | 96 FILE_CHROMEOS_API, // Full path to chrome os api shared object. |
97 #endif | 97 #endif |
98 | 98 |
99 // Valid only in development environment; TODO(darin): move these | 99 // Valid only in development environment; TODO(darin): move these |
100 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 100 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
101 DIR_TEST_DATA, // Directory where unit test data resides. | 101 DIR_TEST_DATA, // Directory where unit test data resides. |
102 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 102 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 103 DIR_LAYOUT_TESTS, // Returns the LayoutTests path for layout |
| 104 // tests. For the current git workflow, it |
| 105 // returns |
| 106 // third_party/WebKit/LayoutTests |
| 107 // On svn workflow (including build machines) |
| 108 // and older git workflow, it returns |
| 109 // chrome/test/data/layout_tests/LayoutTests |
| 110 // See, http://crbug.com/105104. |
103 | 111 |
104 PATH_END | 112 PATH_END |
105 }; | 113 }; |
106 | 114 |
107 // Call once to register the provider for the path keys defined above. | 115 // Call once to register the provider for the path keys defined above. |
108 void RegisterPathProvider(); | 116 void RegisterPathProvider(); |
109 | 117 |
110 } // namespace chrome | 118 } // namespace chrome |
111 | 119 |
112 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 120 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |