OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 TOOLS_GN_VALUE_EXTRACTORS_H_ | 5 #ifndef TOOLS_GN_VALUE_EXTRACTORS_H_ |
6 #define TOOLS_GN_VALUE_EXTRACTORS_H_ | 6 #define TOOLS_GN_VALUE_EXTRACTORS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 const SourceDir& current_dir, | 50 const SourceDir& current_dir, |
51 std::vector<SourceDir>* dest, | 51 std::vector<SourceDir>* dest, |
52 Err* err); | 52 Err* err); |
53 | 53 |
54 bool ExtractListOfLabels(const Value& value, | 54 bool ExtractListOfLabels(const Value& value, |
55 const SourceDir& current_dir, | 55 const SourceDir& current_dir, |
56 const Label& current_toolchain, | 56 const Label& current_toolchain, |
57 std::vector<Label>* dest, | 57 std::vector<Label>* dest, |
58 Err* err); | 58 Err* err); |
59 | 59 |
60 bool ExtractRelativeFile(const BuildSettings* build_settings, | |
61 const Value& value, | |
62 const SourceDir& current_dir, | |
63 SourceFile* file, Err* err); | |
brettw
2013/11/04 05:22:14
Nit: put Err on the next line.
koz (OOO until 15th September)
2013/11/06 07:29:11
Done.
| |
64 | |
60 #endif // TOOLS_GN_VALUE_EXTRACTORS_H_ | 65 #endif // TOOLS_GN_VALUE_EXTRACTORS_H_ |
OLD | NEW |