Bazel doesn't allow a module and file with the same name. Bug: 198619163 Test: m ime, verified it was still installed to out/target/product/emulator64_x86_64/system/bin/ime and not ime.sh Change-Id: I214e190e159a7aff9149e77146d1a493992e885d
8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/system/bin/sh
|
|
# Script to start "vr" on the device
|
|
#
|
|
base=/system
|
|
export CLASSPATH=$base/framework/vr.jar
|
|
exec app_process $base/bin com.android.commands.vr.Vr "$@"
|
|
|