Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: tools/gn/value_extractors.h

Issue 55633002: GN: Add ability to specify a depfile for custom targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698