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

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

Issue 2064533002: [GN] Add JSON project writer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, fix build, fix variable names Created 4 years, 5 months 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
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef TOOLS_GN_JSON_WRITER_H_
6 #define TOOLS_GN_JSON_WRITER_H_
7
8 #include "tools/gn/err.h"
9 #include "tools/gn/target.h"
10
11 class Builder;
12 class BuildSettings;
13
14 class JSONProjectWriter {
15 public:
16 static bool RunAndWriteFiles(const BuildSettings* build_setting,
17 const Builder* builder,
18 const std::string & file_name,
brettw 2016/07/06 22:19:27 Style nit: no space before &
matt.k 2016/07/08 00:39:08 Done.
19 const std::string & exec_script,
20 const std::string & exec_script_extra_args,
21 const std::string & dir_filter_string,
22 bool quiet,
23 Err* err);
24 };
25
26 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698