OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef TOOLS_GN_BUNDLE_FILE_RULE_H_ |
| 6 #define TOOLS_GN_BUNDLE_FILE_RULE_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "tools/gn/source_file.h" |
| 11 #include "tools/gn/substitution_pattern.h" |
| 12 |
| 13 class BundleData; |
| 14 class Settings; |
| 15 class SourceFile; |
| 16 class OutputFile; |
| 17 |
| 18 class BundleFileRule { |
| 19 public: |
| 20 BundleFileRule(const std::vector<SourceFile> sources, |
| 21 const SubstitutionPattern& pattern); |
| 22 ~BundleFileRule(); |
| 23 |
| 24 SourceFile ApplyPatternToSource( |
| 25 const Settings* settings, |
| 26 const BundleData& bundle_data, |
| 27 const SourceFile& source_file) const; |
| 28 |
| 29 OutputFile ApplyPatternToSourceAsOutputFile( |
| 30 const Settings* settings, |
| 31 const BundleData& bundle_data, |
| 32 const SourceFile& source_file) const; |
| 33 |
| 34 const std::vector<SourceFile>& sources() const { return sources_; } |
| 35 const SubstitutionPattern& pattern() const { return pattern_; } |
| 36 |
| 37 private: |
| 38 std::vector<SourceFile> sources_; |
| 39 SubstitutionPattern pattern_; |
| 40 }; |
| 41 |
| 42 #endif // TOOLS_GN_BUNDLE_FILE_RULE_H_ |
OLD | NEW |