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

Unified Diff: mojo/public/tools/dart_pkg.py

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « mojo/public/dart/third_party/yaml/test/yaml_test.dart ('k') | mojo/public/tools/git/dart_pub_get.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/tools/dart_pkg.py
diff --git a/mojo/public/tools/dart_pkg.py b/mojo/public/tools/dart_pkg.py
index b3e14045d20f530e78b28288057e66086809eab4..611ef85ba30821b5ed0ab31f4de2d861251ad275 100755
--- a/mojo/public/tools/dart_pkg.py
+++ b/mojo/public/tools/dart_pkg.py
@@ -302,15 +302,6 @@ def main():
package_path = os.path.join(args.package_root, args.package_name)
link(lib_path, package_path)
- # Symlink non-dart-pkg dependent packages
- dep_packages = os.path.join(common_source_prefix, 'packages')
- if os.path.exists(dep_packages):
- for package in os.listdir(dep_packages):
- source = os.path.join(dep_packages, package)
- target = os.path.join(args.package_root, package)
- if not os.path.exists(target):
- link(source, target)
-
# TODO(zra): Remove when bindings are generated by the mojom package and
# checked in.
# Copy generated bindings back to the source directory.
« no previous file with comments | « mojo/public/dart/third_party/yaml/test/yaml_test.dart ('k') | mojo/public/tools/git/dart_pub_get.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698