Add meta to the SDK

Review URL: https://chromiumcodereview.appspot.com//10924003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@12150 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
brianwilkerson@google.com 2012-09-10 21:43:07 +00:00
parent 441f25547f
commit 2bda2a7c16
2 changed files with 4 additions and 3 deletions

View file

@ -7,7 +7,7 @@
* semantic information about the program being annotated. These annotations are
* intended to be used by tools to provide a better user experience.
*/
library meta;
#library('meta');
/**
* An annotation used to mark a class, field, getter, setter, method, top-level

View file

@ -41,6 +41,7 @@
#.......htmlescape/
# ......intl/
# ......logging/
# ......meta/
# ......unittest/
# ......(more will come here)
# ....util/
@ -233,11 +234,11 @@ def Main(argv):
os.makedirs(PKG)
#
# Create and populate pkg/{args, intl, logging, unittest}
# Create and populate pkg/{args, intl, logging, meta, unittest}
#
for library in ['args', 'htmlescape', 'dartdoc', 'intl', 'logging',
'unittest']:
'meta', 'unittest']:
copytree(join(HOME, 'pkg', library), join(PKG, library),
ignore=ignore_patterns('*.svn', 'doc', 'docs',
'*.py', '*.gypi', '*.sh'))