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

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

Issue 34603009: Improve Windows GN build setup. (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
« no previous file with comments | « tools/gn/ninja_script_target_writer.cc ('k') | tools/gn/ninja_target_writer.cc » ('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 #ifndef TOOLS_GN_NINJA_TARGET_WRITER_H_ 5 #ifndef TOOLS_GN_NINJA_TARGET_WRITER_H_
6 #define TOOLS_GN_NINJA_TARGET_WRITER_H_ 6 #define TOOLS_GN_NINJA_TARGET_WRITER_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "tools/gn/ninja_helper.h" 11 #include "tools/gn/ninja_helper.h"
12 #include "tools/gn/path_output.h" 12 #include "tools/gn/path_output.h"
13 13
14 class FileTemplate; 14 class FileTemplate;
15 class Settings; 15 class Settings;
16 class Target; 16 class Target;
17 17
18 // Generates one target's ".ninja" file. The toplevel "build.ninja" file is 18 // Generates one target's ".ninja" file. The toplevel "build.ninja" file is
19 // generated by the NinjaBuildWriter. 19 // generated by the NinjaBuildWriter.
20 class NinjaTargetWriter { 20 class NinjaTargetWriter {
21 public: 21 public:
22 NinjaTargetWriter(const Target* target, std::ostream& out); 22 NinjaTargetWriter(const Target* target, std::ostream& out);
23 virtual ~NinjaTargetWriter(); 23 virtual ~NinjaTargetWriter();
24 24
25 static void RunAndWriteFile(const Target* target); 25 static void RunAndWriteFile(const Target* target);
26 26
27 virtual void Run() = 0; 27 virtual void Run() = 0;
28 28
29 protected: 29 protected:
30 void WriteEnvironment();
31
32 // Returns the toolchain associated with the target. 30 // Returns the toolchain associated with the target.
33 const Toolchain* GetToolchain() const; 31 const Toolchain* GetToolchain() const;
34 32
35 // Returns the string to be appended to source rules that encodes the 33 // Returns the string to be appended to source rules that encodes the
36 // order-only dependencies for the current target. This will include the 34 // order-only dependencies for the current target. This will include the
37 // "|" character so can just be appended to the source rules. If there are no 35 // "|" character so can just be appended to the source rules. If there are no
38 // implicit dependencies, returns the empty string. 36 // implicit dependencies, returns the empty string.
39 std::string GetSourcesImplicitDeps() const; 37 std::string GetSourcesImplicitDeps() const;
40 38
41 // Returns the FileTemplate constructed from the outputs variable. 39 // Returns the FileTemplate constructed from the outputs variable.
42 FileTemplate GetOutputTemplate() const; 40 FileTemplate GetOutputTemplate() const;
43 41
44 const Settings* settings_; // Non-owning. 42 const Settings* settings_; // Non-owning.
45 const Target* target_; // Non-owning. 43 const Target* target_; // Non-owning.
46 std::ostream& out_; 44 std::ostream& out_;
47 PathOutput path_output_; 45 PathOutput path_output_;
48 46
49 NinjaHelper helper_; 47 NinjaHelper helper_;
50 48
51 private: 49 private:
52 void WriteCopyRules(); 50 void WriteCopyRules();
53 51
54 DISALLOW_COPY_AND_ASSIGN(NinjaTargetWriter); 52 DISALLOW_COPY_AND_ASSIGN(NinjaTargetWriter);
55 }; 53 };
56 54
57 #endif // TOOLS_GN_NINJA_TARGET_WRITER_H_ 55 #endif // TOOLS_GN_NINJA_TARGET_WRITER_H_
OLDNEW
« no previous file with comments | « tools/gn/ninja_script_target_writer.cc ('k') | tools/gn/ninja_target_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698