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

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

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 12 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.0/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.0/bower_components/web-animations-js/target-config.js
new file mode 100644
index 0000000000000000000000000000000000000000..7b6de4e545898c6b3917ace116c368cac28e4cf3
--- /dev/null
+++ b/polymer_0.5.0/bower_components/web-animations-js/target-config.js
@@ -0,0 +1,122 @@
+(function() {
+
+ var scopeSrc = [
+ 'src/scope.js'];
+
+ var minifillSrc = [
+ 'src/animation-node.js',
+ 'src/effect.js',
+ 'src/property-interpolation.js',
+ 'src/animation.js',
+ 'src/apply-preserving-inline-style.js',
+ 'src/element-animatable.js',
+ 'src/interpolation.js',
+ 'src/matrix-interpolation.js',
+ 'src/player.js',
+ 'src/tick.js',
+ 'src/matrix-decomposition.js',
+ 'src/handler-utils.js',
+ 'src/shadow-handler.js',
+ 'src/number-handler.js',
+ 'src/visibility-handler.js',
+ 'src/color-handler.js',
+ 'src/dimension-handler.js',
+ 'src/box-handler.js',
+ 'src/transform-handler.js',
+ 'src/font-weight-handler.js',
+ 'src/position-handler.js',
+ 'src/shape-handler.js',
+ 'src/property-names.js',
+ ];
+
+ var liteMinifillSrc = [
+ 'src/animation-node.js',
+ 'src/effect.js',
+ 'src/property-interpolation.js',
+ 'src/animation.js',
+ 'src/apply.js',
+ 'src/element-animatable.js',
+ 'src/interpolation.js',
+ 'src/player.js',
+ 'src/tick.js',
+ 'src/handler-utils.js',
+ 'src/shadow-handler.js',
+ 'src/number-handler.js',
+ 'src/visibility-handler.js',
+ 'src/color-handler.js',
+ 'src/dimension-handler.js',
+ 'src/box-handler.js',
+ 'src/transform-handler.js',
+ 'src/property-names.js',
+ ];
+
+
+ var sharedSrc = [
+ 'src/timing-utilities.js',
+ 'src/normalize-keyframes.js'];
+
+ var maxifillSrc = [
+ 'src/timeline.js',
+ 'src/maxifill-player.js',
+ 'src/animation-constructor.js',
+ 'src/effect-callback.js',
+ 'src/group-constructors.js'];
+
+ var minifillTest = [
+ 'test/js/animation-node.js',
+ 'test/js/apply-preserving-inline-style.js',
+ 'test/js/box-handler.js',
+ 'test/js/color-handler.js',
+ 'test/js/dimension-handler.js',
+ 'test/js/effect.js',
+ 'test/js/interpolation.js',
+ 'test/js/matrix-interpolation.js',
+ 'test/js/number-handler.js',
+ 'test/js/player.js',
+ 'test/js/player-finish-event.js',
+ 'test/js/property-interpolation.js',
+ 'test/js/tick.js',
+ 'test/js/timing.js',
+ 'test/js/transform-handler.js'];
+
+ var maxifillTest = minifillTest.concat(
+ 'test/js/animation-constructor.js',
+ 'test/js/effect-callback.js',
+ 'test/js/group-constructors.js',
+ 'test/js/group-player.js',
+ 'test/js/group-player-finish-event.js',
+ 'test/js/timeline.js');
+
+ // This object specifies the source and test files for different Web Animation build targets.
+ var targetConfig = {
+ 'web-animations': {
+ scopeSrc: scopeSrc,
+ sharedSrc: sharedSrc,
+ minifillSrc: minifillSrc,
+ maxifillSrc: [],
+ src: scopeSrc.concat(sharedSrc).concat(minifillSrc),
+ test: minifillTest,
+ },
+ 'web-animations-next': {
+ scopeSrc: scopeSrc,
+ sharedSrc: sharedSrc,
+ minifillSrc: minifillSrc,
+ maxifillSrc: maxifillSrc,
+ src: scopeSrc.concat(sharedSrc).concat(minifillSrc).concat(maxifillSrc),
+ test: maxifillTest,
+ },
+ 'web-animations-next-lite': {
+ scopeSrc: scopeSrc,
+ sharedSrc: sharedSrc,
+ minifillSrc: liteMinifillSrc,
+ maxifillSrc: maxifillSrc,
+ src: scopeSrc.concat(sharedSrc).concat(liteMinifillSrc).concat(maxifillSrc),
+ test: [],
+ },
+ };
+
+ if (typeof module != 'undefined')
+ module.exports = targetConfig;
+ else
+ window.webAnimationsTargetConfig = targetConfig;
+})();

Powered by Google App Engine
This is Rietveld 408576698