| 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 #include "tools/gn/target_generator.h" | 5 #include "tools/gn/target_generator.h" |
| 6 | 6 |
| 7 #include "tools/gn/action_target_generator.h" | 7 #include "tools/gn/action_target_generator.h" |
| 8 #include "tools/gn/binary_target_generator.h" | 8 #include "tools/gn/binary_target_generator.h" |
| 9 #include "tools/gn/build_settings.h" | 9 #include "tools/gn/build_settings.h" |
| 10 #include "tools/gn/config.h" | 10 #include "tools/gn/config.h" |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 Target::FileList dest_public; | 156 Target::FileList dest_public; |
| 157 if (!ExtractListOfRelativeFiles(scope_->settings()->build_settings(), *value, | 157 if (!ExtractListOfRelativeFiles(scope_->settings()->build_settings(), *value, |
| 158 scope_->GetSourceDir(), &dest_public, err_)) | 158 scope_->GetSourceDir(), &dest_public, err_)) |
| 159 return; | 159 return; |
| 160 target_->public_headers().swap(dest_public); | 160 target_->public_headers().swap(dest_public); |
| 161 } | 161 } |
| 162 | 162 |
| 163 void TargetGenerator::FillInputs() { | 163 void TargetGenerator::FillInputs() { |
| 164 const Value* value = scope_->GetValue(variables::kInputs, true); | 164 const Value* value = scope_->GetValue(variables::kInputs, true); |
| 165 if (!value) { | 165 if (!value) { |
| 166 // Older versions used "inputs". Allow use of this variable until | 166 // Older versions used "source_prereqs". Allow use of this variable until |
| 167 // all callers are updated. | 167 // all callers are updated. |
| 168 // TODO(brettw) remove this eventually. | 168 // TODO(brettw) remove this eventually. |
| 169 value = scope_->GetValue("inputs", true); | 169 value = scope_->GetValue("source_prereqs", true); |
| 170 | 170 |
| 171 if (!value) | 171 if (!value) |
| 172 return; | 172 return; |
| 173 } | 173 } |
| 174 | 174 |
| 175 Target::FileList dest_inputs; | 175 Target::FileList dest_inputs; |
| 176 if (!ExtractListOfRelativeFiles(scope_->settings()->build_settings(), *value, | 176 if (!ExtractListOfRelativeFiles(scope_->settings()->build_settings(), *value, |
| 177 scope_->GetSourceDir(), &dest_inputs, err_)) | 177 scope_->GetSourceDir(), &dest_inputs, err_)) |
| 178 return; | 178 return; |
| 179 target_->inputs().swap(dest_inputs); | 179 target_->inputs().swap(dest_inputs); |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 258 |
| 259 void TargetGenerator::FillForwardDependentConfigs() { | 259 void TargetGenerator::FillForwardDependentConfigs() { |
| 260 const Value* value = scope_->GetValue( | 260 const Value* value = scope_->GetValue( |
| 261 variables::kForwardDependentConfigsFrom, true); | 261 variables::kForwardDependentConfigsFrom, true); |
| 262 if (value) { | 262 if (value) { |
| 263 ExtractListOfLabels(*value, scope_->GetSourceDir(), | 263 ExtractListOfLabels(*value, scope_->GetSourceDir(), |
| 264 ToolchainLabelForScope(scope_), | 264 ToolchainLabelForScope(scope_), |
| 265 &target_->forward_dependent_configs(), err_); | 265 &target_->forward_dependent_configs(), err_); |
| 266 } | 266 } |
| 267 } | 267 } |
| OLD | NEW |