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

Side by Side Diff: tools/gn/command_analyze.cc

Issue 2940873002: Implement tracking of BUILD.gn files used to define target, toolchain or (Closed)
Patch Set: Fix compilation after rebase. Created 3 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
« no previous file with comments | « tools/gn/builder_unittest.cc ('k') | tools/gn/config.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include <algorithm> 5 #include <algorithm>
6 #include <iterator> 6 #include <iterator>
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 bool ret = base::ReadFileToString(UTF8ToFilePath(args[1]), &input); 103 bool ret = base::ReadFileToString(UTF8ToFilePath(args[1]), &input);
104 if (!ret) { 104 if (!ret) {
105 Err(Location(), "Input file " + args[1] + " not found.").PrintToStdout(); 105 Err(Location(), "Input file " + args[1] + " not found.").PrintToStdout();
106 return 1; 106 return 1;
107 } 107 }
108 108
109 Setup* setup = new Setup; 109 Setup* setup = new Setup;
110 if (!setup->DoSetup(args[0], false) || !setup->Run()) 110 if (!setup->DoSetup(args[0], false) || !setup->Run())
111 return 1; 111 return 1;
112 112
113 Analyzer analyzer(setup->builder());
114
115 Err err; 113 Err err;
116 std::string output = Analyzer(setup->builder()).Analyze(input, &err); 114 Analyzer analyzer(setup->builder(),
115 setup->build_settings().build_config_file(),
116 setup->dotfile_input_file()->name());
117 std::string output = analyzer.Analyze(input, &err);
117 if (err.has_error()) { 118 if (err.has_error()) {
118 err.PrintToStdout(); 119 err.PrintToStdout();
119 return 1; 120 return 1;
120 } 121 }
121 122
122 WriteFile(UTF8ToFilePath(args[2]), output, &err); 123 WriteFile(UTF8ToFilePath(args[2]), output, &err);
123 if (err.has_error()) { 124 if (err.has_error()) {
124 err.PrintToStdout(); 125 err.PrintToStdout();
125 return 1; 126 return 1;
126 } 127 }
127 128
128 return 0; 129 return 0;
129 } 130 }
130 131
131 } // namespace commands 132 } // namespace commands
OLDNEW
« no previous file with comments | « tools/gn/builder_unittest.cc ('k') | tools/gn/config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698