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

Unified Diff: third_party/polymer/PRESUBMIT.py

Issue 917523002: Pull web-animations-js into third-party via the third_party/polymer/reproduce.sh script. Add necess… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove .travis-setup.sh and make a note in README.chromium. Created 5 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 | « content/browser/webui/shared_resources_data_source.cc ('k') | third_party/polymer/bower.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/polymer/PRESUBMIT.py
diff --git a/third_party/polymer/PRESUBMIT.py b/third_party/polymer/PRESUBMIT.py
index 04d5e6b83613cc92f2714ecb5917f324795a3574..cb8298471118683baacd106eb8cd7aa9df653ac8 100644
--- a/third_party/polymer/PRESUBMIT.py
+++ b/third_party/polymer/PRESUBMIT.py
@@ -27,6 +27,9 @@ def _CheckBowerDependencies(input_api, output_api):
bower_dependencies = \
set(json.load(open(bower_json_path))['dependencies'].keys())
installed_components = set(p for p in os.listdir(components_dir))
+ # Add web-animations-js because we keep it in a separate directory
+ # '../third_party/web-animations-js'.
+ installed_components.add('web-animations-js')
if bower_dependencies == installed_components:
return []
« no previous file with comments | « content/browser/webui/shared_resources_data_source.cc ('k') | third_party/polymer/bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698