Add http and oauth2 as SDK packages.

Review URL: https://codereview.chromium.org//11419207

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15466 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
nweiz@google.com 2012-11-28 19:35:59 +00:00
parent 52d2be32af
commit 748bbee8e7
2 changed files with 10 additions and 3 deletions

7
pkg/oauth2/pubspec.yaml Normal file
View file

@ -0,0 +1,7 @@
name: oauth2
description: A composable, Future-based API for making HTTP requests.
dependencies:
unittest:
sdk: unittest
http:
sdk: http

View file

@ -211,11 +211,11 @@ def Main(argv):
os.makedirs(PKG)
#
# Create and populate pkg/{args, intl, logging, meta, unittest}
# Create and populate pkg/{args, intl, logging, meta, unittest, ...}
#
for library in ['args', 'htmlescape', 'intl', 'logging',
'meta', 'unittest']:
for library in ['args', 'htmlescape', 'http', 'intl', 'logging',
'meta', 'oauth2', 'unittest']:
copytree(join(HOME, 'pkg', library), join(PKG, library),
ignore=ignore_patterns('*.svn', 'doc', 'docs',
'*.py', '*.gypi', '*.sh'))