Rebuild only if proto changed.

This commit is contained in:
Evgeny Gerashchenko
2014-05-15 16:47:52 +04:00
parent 4cf2dc665e
commit 018b58b51f
14 changed files with 86 additions and 33 deletions
@@ -0,0 +1,7 @@
Cleaning output files:
out/production/module/test/TestPackage-fun-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/fun.kt
End of files
@@ -0,0 +1,4 @@
package test
fun foo() {
}
@@ -0,0 +1,5 @@
package test
fun foo() {
println("body is changed, but it doesn't matter, we won't rebuild dependencies")
}
@@ -0,0 +1,5 @@
package test
fun usage() {
foo()
}