Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(862)

Unified Diff: mojo/public/dart/mojom/bin/mojom.dart

Issue 1441033002: Move mojo and mojom from mojo/public/dart to mojo/dart/packages (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/dart/mojom/README.md ('k') | mojo/public/dart/mojom/lib/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}");
- }
-}
« no previous file with comments | « mojo/public/dart/mojom/README.md ('k') | mojo/public/dart/mojom/lib/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698