Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | # |
| 18 | # These are the files that comprise the *Windows* SDK. |
| 19 | # |
| 20 | # The Windows SDK is based on the Linux one so in this file we |
| 21 | # need to remove Linux binaries and replace them by their |
| 22 | # Windows counterparts. |
| 23 | # |
| 24 | # This file only includes platform-dependent files. |
| 25 | # Tools-dependent files (and not tied to a specific platform) |
| 26 | # are controled by sdk/build/tools.windows.atree. |
| 27 | # |
| 28 | |
Raphael Moll | 9ca69cf | 2013-02-12 13:48:39 -0800 | [diff] [blame] | 29 | ############################################################################## |
| 30 | # Platform Tools Component |
| 31 | ############################################################################## |
| 32 | |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 33 | rm platform-tools/adb |
Raphael | 476edba | 2011-10-22 23:41:13 -0700 | [diff] [blame] | 34 | rm platform-tools/fastboot |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 35 | bin/adb.exe strip platform-tools/adb.exe |
Raphael | 476edba | 2011-10-22 23:41:13 -0700 | [diff] [blame] | 36 | bin/fastboot.exe strip platform-tools/fastboot.exe |
Josh Gao | 35959de | 2017-09-05 11:30:29 -0700 | [diff] [blame] | 37 | |
Jin Qian | 144a26e | 2017-09-07 11:00:53 -0700 | [diff] [blame] | 38 | rm platform-tools/e2fsdroid |
Josh Gao | 35959de | 2017-09-05 11:30:29 -0700 | [diff] [blame] | 39 | rm platform-tools/mke2fs |
| 40 | bin/mke2fs.exe strip platform-tools/mke2fs.exe |
| 41 | |
Jaegeuk Kim | a91b409 | 2017-12-06 11:15:11 -0800 | [diff] [blame] | 42 | rm platform-tools/sload_f2fs |
| 43 | rm platform-tools/make_f2fs |
Jaegeuk Kim | 111f873 | 2020-07-17 20:21:46 -0700 | [diff] [blame] | 44 | rm platform-tools/make_f2fs_casefold |
Joe Baker-Malone | d2ce549 | 2020-10-15 22:17:56 +0000 | [diff] [blame] | 45 | |
| 46 | # libc++.so not needed on Windows, and that's the only thing here |
| 47 | rm platform-tools/lib64 |
| 48 | |
Jaegeuk Kim | a91b409 | 2017-12-06 11:15:11 -0800 | [diff] [blame] | 49 | bin/make_f2fs.exe strip platform-tools/make_f2fs.exe |
Jaegeuk Kim | 111f873 | 2020-07-17 20:21:46 -0700 | [diff] [blame] | 50 | bin/make_f2fs_casefold.exe strip platform-tools/make_f2fs_casefold.exe |
Jaegeuk Kim | a91b409 | 2017-12-06 11:15:11 -0800 | [diff] [blame] | 51 | |
Josh Gao | 610418d | 2018-01-02 12:02:57 -0800 | [diff] [blame] | 52 | lib/AdbWinUsbApi.dll platform-tools/AdbWinUsbApi.dll |
| 53 | lib/AdbWinApi.dll platform-tools/AdbWinApi.dll |
Josh Gao | a920f75 | 2017-03-09 16:00:52 -0800 | [diff] [blame] | 54 | prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib32/libwinpthread-1.dll platform-tools/libwinpthread-1.dll |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 55 | |
Xavier Ducrohet | 4049f60 | 2014-06-17 22:01:07 -0700 | [diff] [blame] | 56 | rm platform-tools/sqlite3 |
Xavier Ducrohet | ac21950 | 2014-06-21 14:55:52 -0700 | [diff] [blame] | 57 | bin/sqlite3.exe strip platform-tools/sqlite3.exe |
| 58 | |
| 59 | rm platform-tools/dmtracedump |
| 60 | bin/dmtracedump.exe strip platform-tools/dmtracedump.exe |
| 61 | |
| 62 | rm platform-tools/hprof-conv |
| 63 | bin/hprof-conv.exe strip platform-tools/hprof-conv.exe |
| 64 | |
| 65 | rm platform-tools/etc1tool |
| 66 | bin/etc1tool.exe strip platform-tools/etc1tool.exe |
| 67 | |
Xavier Ducrohet | 0f0b786 | 2014-06-17 20:25:57 -0700 | [diff] [blame] | 68 | |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 69 | |
Raphael Moll | 9ca69cf | 2013-02-12 13:48:39 -0800 | [diff] [blame] | 70 | ############################################################################## |
| 71 | # Build Tools Component |
| 72 | ############################################################################## |
Xavier Ducrohet | afda1d3 | 2013-07-25 10:40:54 -0700 | [diff] [blame] | 73 | # Note that the build-tools sub-folder uses the platform-name as a placeholder |
| 74 | # at build-time. Packaging will later change that to the actual build-tools |
| 75 | # revision as specified in the source.properties. |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 76 | |
Adam Lesinski | e2a8379 | 2017-03-29 19:46:18 -0700 | [diff] [blame] | 77 | # Needed by all binaries compiled by mingw32-64 |
| 78 | prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib32/libwinpthread-1.dll strip build-tools/${PLATFORM_NAME}/libwinpthread-1.dll |
| 79 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 80 | rm build-tools/${PLATFORM_NAME}/aapt |
| 81 | bin/aapt.exe strip build-tools/${PLATFORM_NAME}/aapt.exe |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 82 | |
Adam Lesinski | 0961185 | 2016-04-19 10:35:53 -0700 | [diff] [blame] | 83 | rm build-tools/${PLATFORM_NAME}/aapt2 |
| 84 | bin/aapt2.exe strip build-tools/${PLATFORM_NAME}/aapt2.exe |
| 85 | |
Adam Lesinski | 8bb66e6 | 2016-11-08 11:39:47 -0800 | [diff] [blame] | 86 | rm build-tools/${PLATFORM_NAME}/lib64/libaapt2_jni.so |
| 87 | lib/libaapt2_jni.dll strip build-tools/${PLATFORM_NAME}/libaapt2_jni.dll |
| 88 | |
Colin Cross | b9d10f8 | 2020-12-02 14:38:27 -0800 | [diff] [blame] | 89 | # Also include a 64-bit version of libaapt2_jni.dll for use by 64-bit JVMs. |
| 90 | lib64/libaapt2_jni.dll strip build-tools/${PLATFORM_NAME}/lib64/libaapt2_jni.dll |
| 91 | |
| 92 | # Also include the 64-bit libwinpthread-1.dll needed by libaapt2_jni.dll. |
| 93 | prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/bin/libwinpthread-1.dll strip build-tools/${PLATFORM_NAME}/lib64/libwinpthread-1.dll |
| 94 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 95 | rm build-tools/${PLATFORM_NAME}/split-select |
| 96 | bin/split-select.exe strip build-tools/${PLATFORM_NAME}/split-select.exe |
Adam Lesinski | d155da9 | 2014-11-04 14:10:51 -0800 | [diff] [blame] | 97 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 98 | rm build-tools/${PLATFORM_NAME}/aidl |
| 99 | bin/aidl.exe strip build-tools/${PLATFORM_NAME}/aidl.exe |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 100 | |
Alex Klyubin | 9022cd4 | 2016-09-15 14:38:00 -0700 | [diff] [blame] | 101 | rm build-tools/${PLATFORM_NAME}/apksigner |
| 102 | tools/apksig/etc/apksigner.bat build-tools/${PLATFORM_NAME}/apksigner.bat |
| 103 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 104 | rm build-tools/${PLATFORM_NAME}/zipalign |
| 105 | bin/zipalign.exe strip build-tools/${PLATFORM_NAME}/zipalign.exe |
Xavier Ducrohet | 76510e2 | 2014-04-02 18:13:35 -0700 | [diff] [blame] | 106 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 107 | rm build-tools/${PLATFORM_NAME}/dexdump |
| 108 | bin/dexdump.exe strip build-tools/${PLATFORM_NAME}/dexdump.exe |
Raphael Moll | 9ca69cf | 2013-02-12 13:48:39 -0800 | [diff] [blame] | 109 | |
Ivan Gavrilovic | e05b47b | 2018-05-17 10:34:31 +0100 | [diff] [blame] | 110 | rm build-tools/${PLATFORM_NAME}/d8 |
| 111 | prebuilts/r8/d8.bat build-tools/${PLATFORM_NAME}/d8.bat |
| 112 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 113 | rm build-tools/${PLATFORM_NAME}/llvm-rs-cc |
| 114 | bin/llvm-rs-cc.exe strip build-tools/${PLATFORM_NAME}/llvm-rs-cc.exe |
Stephen Hines | 3f2caae | 2014-09-29 18:06:39 -0700 | [diff] [blame] | 115 | |
Miao Wang | afe2d24 | 2015-10-13 13:03:42 -0700 | [diff] [blame] | 116 | # libc++.so not needed on Windows. |
Miao Wang | 050c66a | 2015-10-13 18:02:44 -0700 | [diff] [blame] | 117 | rm build-tools/${PLATFORM_NAME}/lib64/libc++.so |
Miao Wang | afe2d24 | 2015-10-13 13:03:42 -0700 | [diff] [blame] | 118 | |
Pirama Arumuga Nainar | 29c7b8f | 2017-11-09 15:38:47 -0800 | [diff] [blame] | 119 | rm build-tools/${PLATFORM_NAME}/lib64/libLLVM_android.so |
| 120 | lib/libLLVM_android.dll strip build-tools/${PLATFORM_NAME}/libLLVM_android.dll |
Stephen Hines | 3f2caae | 2014-09-29 18:06:39 -0700 | [diff] [blame] | 121 | |
Pirama Arumuga Nainar | 29c7b8f | 2017-11-09 15:38:47 -0800 | [diff] [blame] | 122 | rm build-tools/${PLATFORM_NAME}/lib64/libclang_android.so |
| 123 | lib/libclang_android.dll strip build-tools/${PLATFORM_NAME}/libclang_android.dll |
Stephen Hines | 3f2caae | 2014-09-29 18:06:39 -0700 | [diff] [blame] | 124 | |
| 125 | #bcc not yet compiled on windows |
| 126 | |
Ying Wang | 896afb0 | 2015-08-03 11:36:50 -0700 | [diff] [blame] | 127 | rm build-tools/${PLATFORM_NAME}/lib64/libbcc.so |
Miao Wang | afe2d24 | 2015-10-13 13:03:42 -0700 | [diff] [blame] | 128 | lib/libbcc.dll strip build-tools/${PLATFORM_NAME}/libbcc.dll |
Stephen Hines | 3f2caae | 2014-09-29 18:06:39 -0700 | [diff] [blame] | 129 | |
Ying Wang | 896afb0 | 2015-08-03 11:36:50 -0700 | [diff] [blame] | 130 | rm build-tools/${PLATFORM_NAME}/lib64/libbcinfo.so |
Miao Wang | afe2d24 | 2015-10-13 13:03:42 -0700 | [diff] [blame] | 131 | lib/libbcinfo.dll strip build-tools/${PLATFORM_NAME}/libbcinfo.dll |
Stephen Hines | 3f2caae | 2014-09-29 18:06:39 -0700 | [diff] [blame] | 132 | |
Xavier Ducrohet | f4c73da | 2015-06-02 10:20:16 -0700 | [diff] [blame] | 133 | rm build-tools/${PLATFORM_NAME}/bcc_compat |
| 134 | bin/bcc_compat.exe strip build-tools/${PLATFORM_NAME}/bcc_compat.exe |
Xavier Ducrohet | ebacf02 | 2014-06-17 21:36:30 -0700 | [diff] [blame] | 135 | |
David Gross | 9407572 | 2020-04-29 14:26:10 -0700 | [diff] [blame] | 136 | rm build-tools/${PLATFORM_NAME}/arm-linux-androideabi-ld |
| 137 | prebuilts/sdk/tools/lld-dummy build-tools/${PLATFORM_NAME}/arm-linux-androideabi-ld.exe |
| 138 | |
| 139 | rm build-tools/${PLATFORM_NAME}/aarch64-linux-android-ld |
| 140 | prebuilts/sdk/tools/lld-dummy build-tools/${PLATFORM_NAME}/aarch64-linux-android-ld.exe |
| 141 | |
| 142 | rm build-tools/${PLATFORM_NAME}/i686-linux-android-ld |
| 143 | prebuilts/sdk/tools/lld-dummy build-tools/${PLATFORM_NAME}/i686-linux-android-ld.exe |
| 144 | |
| 145 | rm build-tools/${PLATFORM_NAME}/x86_64-linux-android-ld |
| 146 | prebuilts/sdk/tools/lld-dummy build-tools/${PLATFORM_NAME}/x86_64-linux-android-ld.exe |
| 147 | |
| 148 | rm build-tools/${PLATFORM_NAME}/mipsel-linux-android-ld |
| 149 | prebuilts/sdk/tools/lld-dummy build-tools/${PLATFORM_NAME}/mipsel-linux-android-ld.exe |
| 150 | |
David Gross | 4722577 | 2020-02-27 15:11:36 -0800 | [diff] [blame] | 151 | rm build-tools/${PLATFORM_NAME}/lib64/libc++.so.1 |
| 152 | |
David Gross | 00be4d0 | 2019-11-27 17:20:54 -0800 | [diff] [blame] | 153 | rm build-tools/${PLATFORM_NAME}/lld |
David Gross | 4722577 | 2020-02-27 15:11:36 -0800 | [diff] [blame] | 154 | rm build-tools/${PLATFORM_NAME}/lld-bin/lld |
David Gross | a893a3f | 2020-03-02 17:40:16 -0800 | [diff] [blame] | 155 | |
| 156 | # lld linker trampoline (invokes actual lld linker at lld-bin/lld.exe) |
| 157 | bin/lld.exe strip build-tools/${PLATFORM_NAME}/lld.exe |
| 158 | |
| 159 | # actual lld linker, and dependent library |
Colin Cross | 359ef3d | 2020-03-17 16:23:55 -0700 | [diff] [blame] | 160 | prebuilts/sdk/tools/windows/lld-bin/lld.exe strip build-tools/${PLATFORM_NAME}/lld-bin/lld.exe |
| 161 | prebuilts/sdk/tools/windows/lld-bin/libwinpthread-1.dll strip build-tools/${PLATFORM_NAME}/lld-bin/libwinpthread-1.dll |
David Gross | 00be4d0 | 2019-11-27 17:20:54 -0800 | [diff] [blame] | 162 | |
Xavier Ducrohet | 8641d4d | 2014-10-31 13:47:47 -0700 | [diff] [blame] | 163 | dalvik/dx/etc/mainDexClasses.bat build-tools/${PLATFORM_NAME}/mainDexClasses.bat |
Xavier Ducrohet | 8361bb0 | 2014-10-29 09:49:40 -0700 | [diff] [blame] | 164 | |
Raphael Moll | 9ca69cf | 2013-02-12 13:48:39 -0800 | [diff] [blame] | 165 | |
| 166 | ############################################################################## |
| 167 | # Docs Component |
| 168 | ############################################################################## |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 169 | |
Raphael | bc16220 | 2011-09-14 21:12:15 -0700 | [diff] [blame] | 170 | external/sonivox/docs/JET_Authoring_Guidelines.html docs/JetCreator/JET_Authoring_Guidelines.html |
| 171 | external/sonivox/docs/JET_Authoring_Guidelines_files docs/JetCreator/JET_Authoring_Guidelines_files |
| 172 | external/sonivox/docs/JET_Creator_User_Manual.html docs/JetCreator/JET_Creator_User_Manual.html |
| 173 | external/sonivox/docs/JET_Creator_User_Manual_files docs/JetCreator/JET_Creator_User_Manual_files |