Home | History | Annotate | Download | only in scripts

Lines Matching refs:file

6 # you may not use this file except in compliance with the License.
17 # Generates kotlinc module xml file to standard output based on rsp files
33 # Path in the build file are relative to the build file, we need to make them absolute.
40 for file in $(echo $classpath | tr ":" "\n"); do
41 echo " <classpath path=\"${prefix}/${file}\"/>"
44 # For each rsp file, print source entries
46 for file in $(cat $1); do
47 if [[ $file == *.java ]]; then
48 echo " <javaSourceRoots path=\"${prefix}/${file}\"/>"
49 elif [[ $file == *.kt ]]; then
50 echo " <sources path=\"${prefix}/${file}\"/>"
52 echo "Unknown source file type ${file}"