From 7f801afa07c03f8b3a50b27b46d89a1d8095dcb3 Mon Sep 17 00:00:00 2001 From: jdlrobson Date: Mon, 14 Sep 2020 15:16:58 -0700 Subject: [PATCH] Vector should use opt-in policy for ResourceLoaderSkinModule features Bug: T252774 Change-Id: I50afd035360ff2eccd5a934a02a218d093f9583d --- skin.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/skin.json b/skin.json index 70db03a..2e6aa6f 100644 --- a/skin.json +++ b/skin.json @@ -72,7 +72,14 @@ "ResourceModules": { "skins.vector.styles.legacy": { "class": "ResourceLoaderSkinModule", - "features": [ "normalize", "elements", "content", "interface", "logo", "legacy" ], + "features": { + "normalize": true, + "elements": true, + "content": true, + "interface": true, + "logo": true, + "legacy": true + }, "targets": [ "desktop", "mobile" @@ -81,7 +88,13 @@ }, "skins.vector.styles": { "class": "ResourceLoaderSkinModule", - "features": [ "normalize", "elements", "content", "interface", "legacy" ], + "features": { + "normalize": true, + "elements": true, + "content": true, + "interface": true, + "legacy": true + }, "targets": [ "desktop", "mobile"