aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/launcher/java_launcher.cc
diff options
context:
space:
mode:
authorGravatar Yun Peng <pcloudy@google.com>2017-07-21 15:57:05 +0200
committerGravatar Jakob Buchgraber <buchgr@google.com>2017-07-24 09:51:07 +0200
commit09dd8c0330a3e18951d9481751ef99d3668115c0 (patch)
tree2308b2881af63db841ee66ae9e9800b262df170d /src/tools/launcher/java_launcher.cc
parent0736aead33ba3d144f6cb2498ec175c3bfce9556 (diff)
Windows: Implement native binary launcher
The native launcher is implemented based on this design doc: https://docs.google.com/document/d/1z6Xv95CJYNYNYylcRklA6xBeesNLc54dqXfri0z0e14/edit?usp=sharing Change-Id: I83bae844f792a587ce0e342a3c0f238b760afeaa PiperOrigin-RevId: 162736269
Diffstat (limited to 'src/tools/launcher/java_launcher.cc')
-rw-r--r--src/tools/launcher/java_launcher.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/tools/launcher/java_launcher.cc b/src/tools/launcher/java_launcher.cc
new file mode 100644
index 0000000000..ce626d347e
--- /dev/null
+++ b/src/tools/launcher/java_launcher.cc
@@ -0,0 +1,26 @@
+// Copyright 2017 The Bazel Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#include "src/tools/launcher/java_launcher.h"
+
+namespace bazel {
+namespace launcher {
+
+ExitCode JavaBinaryLauncher::Launch() {
+ // TODO(pcloudy): Implement Java launcher
+ return 0;
+}
+
+} // namespace launcher
+} // namespace bazel