| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 | 392 |
| 393 // Output files. Empty until the target is resolved. | 393 // Output files. Empty until the target is resolved. |
| 394 std::vector<OutputFile> computed_outputs_; | 394 std::vector<OutputFile> computed_outputs_; |
| 395 OutputFile link_output_file_; | 395 OutputFile link_output_file_; |
| 396 OutputFile dependency_output_file_; | 396 OutputFile dependency_output_file_; |
| 397 std::vector<OutputFile> runtime_outputs_; | 397 std::vector<OutputFile> runtime_outputs_; |
| 398 | 398 |
| 399 DISALLOW_COPY_AND_ASSIGN(Target); | 399 DISALLOW_COPY_AND_ASSIGN(Target); |
| 400 }; | 400 }; |
| 401 | 401 |
| 402 extern const char kExecution_Help[]; |
| 403 |
| 402 #endif // TOOLS_GN_TARGET_H_ | 404 #endif // TOOLS_GN_TARGET_H_ |
| OLD | NEW |