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