| 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> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 14 #include "base/logging.h" | 13 #include "base/logging.h" |
| 15 #include "base/strings/string_piece.h" | 14 #include "base/macros.h" |
| 16 #include "base/synchronization/lock.h" | |
| 17 #include "tools/gn/action_values.h" | 15 #include "tools/gn/action_values.h" |
| 18 #include "tools/gn/config_values.h" | 16 #include "tools/gn/config_values.h" |
| 19 #include "tools/gn/inherited_libraries.h" | 17 #include "tools/gn/inherited_libraries.h" |
| 20 #include "tools/gn/item.h" | 18 #include "tools/gn/item.h" |
| 21 #include "tools/gn/label_ptr.h" | 19 #include "tools/gn/label_ptr.h" |
| 22 #include "tools/gn/ordered_set.h" | 20 #include "tools/gn/ordered_set.h" |
| 23 #include "tools/gn/output_file.h" | 21 #include "tools/gn/output_file.h" |
| 24 #include "tools/gn/source_file.h" | 22 #include "tools/gn/source_file.h" |
| 25 #include "tools/gn/unique_vector.h" | 23 #include "tools/gn/unique_vector.h" |
| 26 | 24 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 | 328 |
| 331 // Output files. Empty until the target is resolved. | 329 // Output files. Empty until the target is resolved. |
| 332 std::vector<OutputFile> computed_outputs_; | 330 std::vector<OutputFile> computed_outputs_; |
| 333 OutputFile link_output_file_; | 331 OutputFile link_output_file_; |
| 334 OutputFile dependency_output_file_; | 332 OutputFile dependency_output_file_; |
| 335 | 333 |
| 336 DISALLOW_COPY_AND_ASSIGN(Target); | 334 DISALLOW_COPY_AND_ASSIGN(Target); |
| 337 }; | 335 }; |
| 338 | 336 |
| 339 #endif // TOOLS_GN_TARGET_H_ | 337 #endif // TOOLS_GN_TARGET_H_ |
| OLD | NEW |