| 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_TARGET_H_ | 5 #ifndef TOOLS_GN_TARGET_H_ |
| 6 #define TOOLS_GN_TARGET_H_ | 6 #define TOOLS_GN_TARGET_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 virtual const Target* AsTarget() const OVERRIDE; | 51 virtual const Target* AsTarget() const OVERRIDE; |
| 52 virtual void OnResolved() OVERRIDE; | 52 virtual void OnResolved() OVERRIDE; |
| 53 | 53 |
| 54 // This flag indicates if we've run the TargetGenerator for this target to | 54 // This flag indicates if we've run the TargetGenerator for this target to |
| 55 // fill out the rest of the values. Once we've done this, we save the | 55 // fill out the rest of the values. Once we've done this, we save the |
| 56 // location of the function that started the generating so that we can detect | 56 // location of the function that started the generating so that we can detect |
| 57 // duplicate declarations. | 57 // duplicate declarations. |
| 58 bool HasBeenGenerated() const; | 58 bool HasBeenGenerated() const; |
| 59 void SetGenerated(const Token* token); | 59 void SetGenerated(const Token* token); |
| 60 | 60 |
| 61 const Settings* settings() const { return settings_; } |
| 62 |
| 61 OutputType output_type() const { return output_type_; } | 63 OutputType output_type() const { return output_type_; } |
| 62 void set_output_type(OutputType t) { output_type_ = t; } | 64 void set_output_type(OutputType t) { output_type_ = t; } |
| 63 | 65 |
| 64 bool IsLinkable() const; | 66 bool IsLinkable() const; |
| 65 | 67 |
| 66 // Will be the empty string to use the target label as the output name. | 68 // Will be the empty string to use the target label as the output name. |
| 67 const std::string& output_name() const { return output_name_; } | 69 const std::string& output_name() const { return output_name_; } |
| 68 void set_output_name(const std::string& name) { output_name_ = name; } | 70 void set_output_name(const std::string& name) { output_name_ = name; } |
| 69 | 71 |
| 70 const FileList& sources() const { return sources_; } | 72 const FileList& sources() const { return sources_; } |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 const OrderedSet<std::string>& all_libs() const { return all_libs_; } | 142 const OrderedSet<std::string>& all_libs() const { return all_libs_; } |
| 141 | 143 |
| 142 const SourceFile& gyp_file() const { return gyp_file_; } | 144 const SourceFile& gyp_file() const { return gyp_file_; } |
| 143 void set_gyp_file(const SourceFile& gf) { gyp_file_ = gf; } | 145 void set_gyp_file(const SourceFile& gf) { gyp_file_ = gf; } |
| 144 | 146 |
| 145 private: | 147 private: |
| 146 // Pulls necessary information from dependents to this one when all | 148 // Pulls necessary information from dependents to this one when all |
| 147 // dependencies have been resolved. | 149 // dependencies have been resolved. |
| 148 void PullDependentTargetInfo(std::set<const Config*>* unique_configs); | 150 void PullDependentTargetInfo(std::set<const Config*>* unique_configs); |
| 149 | 151 |
| 152 const Settings* settings_; |
| 150 OutputType output_type_; | 153 OutputType output_type_; |
| 151 std::string output_name_; | 154 std::string output_name_; |
| 152 | 155 |
| 153 FileList sources_; | 156 FileList sources_; |
| 154 FileList source_prereqs_; | 157 FileList source_prereqs_; |
| 155 FileList data_; | 158 FileList data_; |
| 156 | 159 |
| 157 bool hard_dep_; | 160 bool hard_dep_; |
| 158 | 161 |
| 159 // Note that if there are any groups in the deps, once the target is resolved | 162 // Note that if there are any groups in the deps, once the target is resolved |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 195 |
| 193 SourceFile gyp_file_; | 196 SourceFile gyp_file_; |
| 194 | 197 |
| 195 bool generated_; | 198 bool generated_; |
| 196 const Token* generator_function_; // Who generated this: for error messages. | 199 const Token* generator_function_; // Who generated this: for error messages. |
| 197 | 200 |
| 198 DISALLOW_COPY_AND_ASSIGN(Target); | 201 DISALLOW_COPY_AND_ASSIGN(Target); |
| 199 }; | 202 }; |
| 200 | 203 |
| 201 #endif // TOOLS_GN_TARGET_H_ | 204 #endif // TOOLS_GN_TARGET_H_ |
| OLD | NEW |