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

Unified Diff: polymer_0.5.4/bower_components/web-animations-js/target-config.js

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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
Index: polymer_0.5.4/bower_components/web-animations-js/target-config.js
diff --git a/polymer_0.5.0/bower_components/web-animations-js/target-config.js b/polymer_0.5.4/bower_components/web-animations-js/target-config.js
similarity index 76%
copy from polymer_0.5.0/bower_components/web-animations-js/target-config.js
copy to polymer_0.5.4/bower_components/web-animations-js/target-config.js
index 7b6de4e545898c6b3917ace116c368cac28e4cf3..b42139e6c95abb796fe70210c202982cbb42928d 100644
--- a/polymer_0.5.0/bower_components/web-animations-js/target-config.js
+++ b/polymer_0.5.4/bower_components/web-animations-js/target-config.js
@@ -3,7 +3,7 @@
var scopeSrc = [
'src/scope.js'];
- var minifillSrc = [
+ var webAnimations1Src = [
'src/animation-node.js',
'src/effect.js',
'src/property-interpolation.js',
@@ -29,7 +29,7 @@
'src/property-names.js',
];
- var liteMinifillSrc = [
+ var liteWebAnimations1Src = [
'src/animation-node.js',
'src/effect.js',
'src/property-interpolation.js',
@@ -53,16 +53,18 @@
var sharedSrc = [
'src/timing-utilities.js',
- 'src/normalize-keyframes.js'];
+ 'src/normalize-keyframes.js',
+ 'src/deprecation.js',
+ ];
- var maxifillSrc = [
+ var webAnimationsNextSrc = [
'src/timeline.js',
- 'src/maxifill-player.js',
+ 'src/web-animations-next-player.js',
'src/animation-constructor.js',
'src/effect-callback.js',
'src/group-constructors.js'];
- var minifillTest = [
+ var webAnimations1Test = [
'test/js/animation-node.js',
'test/js/apply-preserving-inline-style.js',
'test/js/box-handler.js',
@@ -79,7 +81,7 @@
'test/js/timing.js',
'test/js/transform-handler.js'];
- var maxifillTest = minifillTest.concat(
+ var webAnimationsNextTest = webAnimations1Test.concat(
'test/js/animation-constructor.js',
'test/js/effect-callback.js',
'test/js/group-constructors.js',
@@ -92,25 +94,25 @@
'web-animations': {
scopeSrc: scopeSrc,
sharedSrc: sharedSrc,
- minifillSrc: minifillSrc,
- maxifillSrc: [],
- src: scopeSrc.concat(sharedSrc).concat(minifillSrc),
- test: minifillTest,
+ webAnimations1Src: webAnimations1Src,
+ webAnimationsNextSrc: [],
+ src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src),
+ test: webAnimations1Test,
},
'web-animations-next': {
scopeSrc: scopeSrc,
sharedSrc: sharedSrc,
- minifillSrc: minifillSrc,
- maxifillSrc: maxifillSrc,
- src: scopeSrc.concat(sharedSrc).concat(minifillSrc).concat(maxifillSrc),
- test: maxifillTest,
+ webAnimations1Src: webAnimations1Src,
+ webAnimationsNextSrc: webAnimationsNextSrc,
+ src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src).concat(webAnimationsNextSrc),
+ test: webAnimationsNextTest,
},
'web-animations-next-lite': {
scopeSrc: scopeSrc,
sharedSrc: sharedSrc,
- minifillSrc: liteMinifillSrc,
- maxifillSrc: maxifillSrc,
- src: scopeSrc.concat(sharedSrc).concat(liteMinifillSrc).concat(maxifillSrc),
+ webAnimations1Src: liteWebAnimations1Src,
+ webAnimationsNextSrc: webAnimationsNextSrc,
+ src: scopeSrc.concat(sharedSrc).concat(liteWebAnimations1Src).concat(webAnimationsNextSrc),
test: [],
},
};

Powered by Google App Engine
This is Rietveld 408576698