Don't list pkg/third_party when finding packages

R=kevmoo@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45431 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ricow@google.com 2015-04-27 20:11:42 +00:00
parent d5bace63ad
commit bf512c6b32
3 changed files with 0 additions and 4 deletions

View file

@ -13,8 +13,6 @@
'inputs': [
'../tools/make_links.py',
'<!@(["python", "../tools/list_pkg_directories.py", "."])',
'<!@(["python", "../tools/list_pkg_directories.py", '
'"third_party"])',
'<!@(["python", "../tools/list_pkg_directories.py", '
'"../third_party/pkg"])',
'<!@(["python", "../tools/list_pkg_directories.py", '

View file

@ -1 +0,0 @@
# Should fix the script so we can remove this

View file

@ -423,7 +423,6 @@ abstract class TestSuite {
var dartDir = TestUtils.dartDir;
var futures = [
listDir(dartDir.append('pkg'), isValid),
listDir(dartDir.append('pkg').append('third_party'), isValid),
listDir(dartDir.append('third_party').append('pkg'), isValid),
listDir(dartDir.append('runtime').append('observatory'), isValid),
];