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

Unified Diff: pkg/docgen/bin/dartdoc.py

Issue 158083002: introduce web_components pkg for consolidated polyfills (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | « pkg/custom_element/pubspec.yaml ('k') | pkg/html_import/LICENSE » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/bin/dartdoc.py
diff --git a/pkg/docgen/bin/dartdoc.py b/pkg/docgen/bin/dartdoc.py
index cca0aac8e55474e7b0e940498f2925fe243f04b1..98955df90d1838a652eb8c5174c03ccd758d1149 100644
--- a/pkg/docgen/bin/dartdoc.py
+++ b/pkg/docgen/bin/dartdoc.py
@@ -25,8 +25,7 @@ PUB = join(DART_DIR, 'sdk/bin/pub')
DART2JS = join(DART_DIR, 'sdk/bin/dart2js')
PACKAGE_ROOT = join(dirname(dirname(dirname(DART_EXECUTABLE[:-(len('dart'))]))),
'packages/')
-EXCLUDED_PACKAGES = ['browser', 'html_import', 'mutation_observer',
- 'pkg.xcodeproj', 'shadow_dom']
+EXCLUDED_PACKAGES = ['browser', 'mutation_observer', 'pkg.xcodeproj']
APPSERVER_EXECUTABLE = 'dev_appserver.py'
@@ -87,7 +86,7 @@ def GenerateAllDocs(docgen_options):
# from the SDK and includes only the ones from pkg. So right now our only option
# is to do everything in one pass.
doc_dir = join(DART_DIR, 'pkg')
- cmd_lst = [DART_EXECUTABLE,
+ cmd_lst = [DART_EXECUTABLE,
'--package-root=%s' % PACKAGE_ROOT, 'docgen.dart', '--include-sdk' ]
cmd_str = ' '.join(AddUserDocgenOptions(cmd_lst, docgen_options, True))
# Try to run all pkg docs together at once as it's fastest.
« no previous file with comments | « pkg/custom_element/pubspec.yaml ('k') | pkg/html_import/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698