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

Unified Diff: third_party/pkg/angular/lib/angular.dart

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months 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 | « third_party/pkg/angular/karma_run.sh ('k') | third_party/pkg/angular/lib/bootstrap.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pkg/angular/lib/angular.dart
diff --git a/third_party/pkg/angular/lib/angular.dart b/third_party/pkg/angular/lib/angular.dart
deleted file mode 100644
index a663a77d577fe3261ed8147d6770dda25d720dde..0000000000000000000000000000000000000000
--- a/third_party/pkg/angular/lib/angular.dart
+++ /dev/null
@@ -1,71 +0,0 @@
-/**
- * Angular is a framework for building single page web applications.
- *
- * Further reading:
- *
- * - AngularJS [Overview](http://www.angularjs.org)
- * - [Tutorial](https://github.com/angular/angular.dart.tutorial/wiki)
- * - [Mailing List](http://groups.google.com/d/forum/angular-dart?hl=en)
- *
- */
-library angular;
-
-import 'dart:html' as dom;
-import 'dart:js' as js;
-import 'package:di/di.dart';
-import 'package:di/dynamic_injector.dart';
-
-/**
- * If you are writing code accessed from Angular expressions, you must include
- * your own @MirrorsUsed annotation or ensure that everything is tagged with
- * the Ng annotations.
- *
- * All programs should also include a @MirrorsUsed(override: '*') which
- * tells the compiler that only the explicitly listed libraries will
- * be reflected over.
- *
- * This is a short-term fix until we implement a transformer-based solution
- * which does not rely on mirrors.
- */
-@MirrorsUsed(targets: const [
- 'angular',
- 'angular.core',
- 'angular.core.dom',
- 'angular.filter',
- 'angular.perf',
- 'angular.directive',
- 'angular.routing',
- 'angular.core.parser.Parser',
- 'angular.core.parser.dynamic_parser',
- 'angular.core.parser.lexer',
- 'perf_api',
- List,
- dom.NodeTreeSanitizer,
-],
-metaTargets: const [
- NgInjectableService,
- NgDirective,
- NgController,
- NgComponent,
- NgFilter
-])
-import 'dart:mirrors' show MirrorsUsed;
-
-import 'package:angular/core/module.dart';
-import 'package:angular/core_dom/module.dart';
-import 'package:angular/directive/module.dart';
-import 'package:angular/filter/module.dart';
-import 'package:angular/perf/module.dart';
-import 'package:angular/routing/module.dart';
-
-export 'package:di/di.dart';
-export 'package:angular/core/module.dart';
-export 'package:angular/core_dom/module.dart';
-export 'package:angular/core/parser/parser.dart';
-export 'package:angular/core/parser/lexer.dart';
-export 'package:angular/directive/module.dart';
-export 'package:angular/filter/module.dart';
-export 'package:angular/routing/module.dart';
-
-part 'bootstrap.dart';
-part 'introspection.dart';
« no previous file with comments | « third_party/pkg/angular/karma_run.sh ('k') | third_party/pkg/angular/lib/bootstrap.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698