Julio Merino | 2877485 | 2016-09-14 16:59:46 +0000 | [diff] [blame] | 1 | // Copyright 2016 The Bazel Authors. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | #ifndef BAZEL_SRC_MAIN_CPP_BLAZE_H_ |
| 15 | #define BAZEL_SRC_MAIN_CPP_BLAZE_H_ |
| 16 | |
| 17 | #include "src/main/cpp/option_processor.h" |
Julio Merino | e3e3bfa | 2016-12-08 22:22:12 +0000 | [diff] [blame] | 18 | #include "src/main/cpp/workspace_layout.h" |
Chloe Calvarin | 78f1c85 | 2016-11-22 21:58:50 +0000 | [diff] [blame] | 19 | #include "src/main/cpp/util/logging.h" |
Julio Merino | 2877485 | 2016-09-14 16:59:46 +0000 | [diff] [blame] | 20 | |
| 21 | namespace blaze { |
| 22 | |
Julio Merino | e3e3bfa | 2016-12-08 22:22:12 +0000 | [diff] [blame] | 23 | int Main(int argc, const char* argv[], WorkspaceLayout* workspace_layout, |
ccalvarin | 9eea0f9 | 2018-03-21 15:32:30 -0700 | [diff] [blame] | 24 | OptionProcessor* option_processor); |
Julio Merino | 2877485 | 2016-09-14 16:59:46 +0000 | [diff] [blame] | 25 | |
| 26 | } // namespace blaze |
| 27 | |
| 28 | #endif // BAZEL_SRC_MAIN_CPP_BLAZE_H_ |