| Index: runtime/bin/vmservice.h
|
| diff --git a/tests/standalone/http_launch_data/http_launch_main.dart b/runtime/bin/vmservice.h
|
| similarity index 54%
|
| copy from tests/standalone/http_launch_data/http_launch_main.dart
|
| copy to runtime/bin/vmservice.h
|
| index bd35bae2c6bc033c1a4ba1e87ee6e428af4853d1..4dcf93f704aaf7e82fc4d54ab5dbd81d2c7ee64e 100644
|
| --- a/tests/standalone/http_launch_data/http_launch_main.dart
|
| +++ b/runtime/bin/vmservice.h
|
| @@ -2,12 +2,16 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +#ifndef BIN_VMSERVICE_H_
|
| +#define BIN_VMSERVICE_H_
|
|
|
| -library http_lanuch_main;
|
| +#include "include/dart_api.h"
|
|
|
| -import 'package:simple/simple.dart';
|
| +namespace dart {
|
| +namespace bin {
|
|
|
| -main() {
|
| - print(getSimpleString());
|
| -}
|
|
|
| +} // namespace bin
|
| +} // namespace dart
|
| +
|
| +#endif // BIN_VMSERVICE_H_
|
|
|