OSDN Git Service

simpleperf: add demo for kotlin.
authorYabin Cui <yabinc@google.com>
Tue, 27 Jun 2017 01:40:36 +0000 (18:40 -0700)
committerYabin Cui <yabinc@google.com>
Tue, 27 Jun 2017 18:28:17 +0000 (11:28 -0700)
commit6cc52fdf2d2c25f4583eb3b0159f71005966dc79
treed4de80fb7e0844b9900e3a423e678c6c800d4825
parent6a9444152fe1b117c34002ac53d0942c27f9606a
simpleperf: add demo for kotlin.

And fix annotate.py to include kotlin source code.

Bug: http://b/32834638
Test: profile the app on bullhead and marlin using scripts manually.
Change-Id: Ic812cd2f8db7d047ceac58e3f5ae6a3f19e1879f
43 files changed:
simpleperf/demo/README.md
simpleperf/demo/SimpleperfExampleOfKotlin/.gitignore [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/.idea/gradle.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/.idea/misc.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/.idea/modules.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/.idea/runConfigurations.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/.gitignore [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling.gradle [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/arm64-v8a/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/armeabi-v7a/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/armeabi/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/mips/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/mips64/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/x86/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/profiling_apk_add_dir/lib/x86_64/wrap.sh [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/proguard-rules.pro [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/androidTest/java/com/example/simpleperf/simpleperfexampleofkotlin/ExampleInstrumentedTest.kt [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/AndroidManifest.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/java/com/example/simpleperf/simpleperfexampleofkotlin/MainActivity.kt [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/layout/activity_main.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/values/colors.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/values/strings.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/main/res/values/styles.xml [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/app/src/test/java/com/example/simpleperf/simpleperfexampleofkotlin/ExampleUnitTest.kt [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/build.gradle [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/gradle.properties [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/gradle/wrapper/gradle-wrapper.jar [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/gradle/wrapper/gradle-wrapper.properties [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/gradlew [new file with mode: 0755]
simpleperf/demo/SimpleperfExampleOfKotlin/gradlew.bat [new file with mode: 0644]
simpleperf/demo/SimpleperfExampleOfKotlin/settings.gradle [new file with mode: 0644]
simpleperf/scripts/annotate.py