From 784483e7ac437e7c7c29fecdb33b7983d5aea600 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Wed, 31 Jul 2019 20:47:21 +0300 Subject: [PATCH] as36: Add required plugins to test runtime #KT-33063 --- idea/build.gradle.kts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index dae78f30ff6..74848e815b8 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -176,6 +176,13 @@ dependencies { testRuntime(intellijPluginDep("smali")) testRuntime(intellijPluginDep("testng")) + if (Ide.AS36.orHigher()) { + testRuntime(intellijPluginDep("android-layoutlib")) + testRuntime(intellijPluginDep("git4idea")) + testRuntime(intellijPluginDep("google-cloud-tools-core-as")) + testRuntime(intellijPluginDep("google-login-as")) + } + performanceTestCompile(sourceSets["test"].output) performanceTestCompile(sourceSets["main"].output) performanceTestCompile(project(":nj2k"))