| Index: mojo/public/dart/mojom/bin/mojom.dart
|
| diff --git a/mojo/public/dart/mojom/bin/mojom.dart b/mojo/public/dart/mojom/bin/mojom.dart
|
| deleted file mode 100644
|
| index 452f0520d99e6a52537f37ae473d9a4ec0c80f0a..0000000000000000000000000000000000000000
|
| --- a/mojo/public/dart/mojom/bin/mojom.dart
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -import 'dart:io';
|
| -
|
| -import 'package:mojom/src/command_runner.dart';
|
| -import 'package:mojom/src/utils.dart'
|
| - show CommandLineError, GenerationError, FetchError;
|
| -
|
| -main(List<String> arguments) async {
|
| - var commandRunner = new MojomCommandRunner();
|
| - try {
|
| - return await commandRunner.run(arguments);
|
| - } on CommandLineError catch (e) {
|
| - stderr.writeln("$e\n${commandRunner.usage}");
|
| - } on GenerationError catch (e) {
|
| - stderr.writeln("$e\n${commandRunner.usage}");
|
| - } on FetchError catch (e) {
|
| - stderr.writeln("$e\n${commandRunner.usage}");
|
| - }
|
| -}
|
|
|