[TOC]
概述
阅读Android源码的好处有很多,可以加深我们对系统的了解,可以参考牛人优雅的代码实现,可以从根本上找出一些bug的原因…我们应该庆幸Android是开源的,所有的功能都可以看到实现,所有的bug都能追踪溯源。
我想大家或多或少听说过Android源码开源项目,即AOSP(Android Open Source Project) ,有些人可能还不知道如何下载AOSP,有些人虽然下载下来了,但是面对庞大的Android源码项目又望而却步,不知道从哪儿下手。
学习Android系统源码方式有两种:
1、在线学习
可以访问http://androidxref.com来阅读系统源码;
Android在线阅读源码的网站有很多.
比如 http://www.grepcode.com 、http://androidxref.com、https://www.androidos.net.cn 等,
这里推荐使用http://androidxref.com 进行在线阅读,这个网址提供了Android1.6到Android 8.0.0的源码,
需要掌握系统源码目录,最好是将源码下载下来,所以本文将具体讲解如何下载和阅读Android系统源码。
源码下载
下载AOSP
源码下载是我们分析源码的开始,Android源码可以全量下载,也可以单个下载,我们先介绍全量下载。
全量下载
官方文档 ,https://source.android.google.cn/setup/build/downloading
只要按照上面一步步做就可以了,但是由于需要翻墙,国内无法直接访问,而整个Android项目源码巨大,即便是翻墙后下载也很慢,所以还是使用国内镜像比较好。
我推荐清华大学开源镜像,地址:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/ ,这上面也是有完整的教程。
一定要备一个比较大的磁盘,至少60个G吧,还不算后期编译的。
生成repo文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| # 创建下载目录 mkdir ~/01.WorkSpace/AndroidSource # 将当前的目录设置临时变量 PATH=~/01.WorkSpace/AndroidSource:$PATH # 初始化repo文件 curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo > ~/01.WorkSpace/AndroidSource/repo # 修改repo权限 chmod a+x ~/01.WorkSpace/AndroidSource/repo # 设置repo的源的地址 export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-12.0.0_r26
# 下载源码的移动硬盘 # 创建下载目录 mkdir /Volumes/FrewenWang/01.WorkSpace/AOSP # 将当前的目录设置临时变量 PATH=/Volumes/FrewenWang/01.WorkSpace/AOSP:$PATH # 初始化repo文件 curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo > /Volumes/FrewenWang/01.WorkSpace/AOSP/repo # 修改repo权限 chmod a+x /Volumes/FrewenWang/01.WorkSpace/AOSP/repo # 设置repo的源的地址 export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-12.0.0_r26
# 同步源码树(以后只需执行这条命令来同步): repo sync
|
初始化仓库:
1 2 3 4 5 6 7 8
| frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ PATH=~/01.WorkSpace/AndroidSource:$PATH frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo > ~/01.WorkSpace/AndroidSource/repo % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 42573 100 42573 0 0 227k 0 --:--:-- --:--:-- --:--:-- 227k frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ chmod a+x ~/01.WorkSpace/AndroidSource/repo frewen@frewenUbuntu:~/01.WorkSpace/AndroidSource$ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-12.0.0_r26
|
如果提示无法连接到 gerrit.googlesource.com,请参照git-repo的帮助页面的更新一节。
错误一:
提示错误:
repo的运行过程中会尝试访问官方的git源更新自己,如果想使用tuna的镜像源进行更新,可以将如下内容复制到你的~/.bashrc里
1
| export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
|
这样设置完镜像之后,我们再进行重试。
错误二:如果遇到下面的错误
1 2 3 4 5
| ➜ AndroidSource repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest Downloading Repo source from https://gerrit.googlesource.com/git-repo fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle fatal: error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108) fatal: cloning the git-repo repository failed, will remove '.repo/repo'
|
解决方法:https://www.mscto.com/mobile/377095.html
1 2 3 4
| //打开 ~/bin/下的repo文件,vim进入。添加:
import ssl ssl._create_default_https_context = ssl._create_unverified_context
|
错误三:我们初始化仓库的时候,如果遇到下面的错误
1 2 3 4 5
| repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest /usr/bin/env: "python": 权限不够
# 我们需要安装python环境。 sudo apt install python
|
指定版本下载
如果我们只想看某个版本的Android系统源码。
要对“master”以外的分支进行校验,请使用 -b 来指定相应分支。要查看分支列表,请参阅:https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds
如果需要某个特定的 Android 版本(列表):https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds
我们可以选择自己制定的任意版本
1 2 3 4
| repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest //会下载Master分支 repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-9.0.0_r47 repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-10.0.0_r36 repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-12.0.0_r26
|
repo同步
接下来,同步源码树(以后只需执行这条命令来同步):
常见错误:
错误:初始化仓库失败
如果提示无法连接到 gerrit.googlesource.com,请参照git-repo的帮助页面的更新一节。
提示错误:
1 2 3 4 5 6
| frewenwong@frewenUbuntu18:/media/psf/Home/01.WorksSpace/AndroidSource$ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-8.1.0_r81 Downloading Repo source from https://gerrit.googlesource.com/git-repo fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle fatal: error [Errno 111] Connection refused fatal: cloning the git-repo repository failed, will remove '.repo/repo'
|
repo的运行过程中会尝试访问官方的git源更新自己,如果想使用tuna的镜像源进行更新,可以将如下内容复制到你的~/.bashrc里
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
这样设置完镜像之后,我们再进行重试。
错误:证书校验失败
➜ AndroidSource repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest
Downloading Repo source from https://gerrit.googlesource.com/git-repo
fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
fatal: error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)
fatal: cloning the git-repo repository failed, will remove '.repo/repo'
解决方法:https://www.mscto.com/mobile/377095.html
//打开我们在这个/01.WorkSpace/AndroidSource目录下生成的repo文件,vim进入。添加:
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
单个下载
我们分析源码其实是不需要全部代码的,因为AOSP不仅包括系统源码,还有些工具代码,如aapt,adb等,这些我们根本不需要,而且即便是系统源码,也不是所有我们都需要看,如果真的全部看,你这辈子都看不完,所以我还是推荐大家单个下载。
下载的官方地址:https://android.googlesource.com/ ,
可供下载的git地址
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
| (base) frewen@FreweniMacBookPro /Volumes/FreweniDisk/01.WorkSpace/AndroidSource python download_aosp.py git clone https://aosp.tuna.tsinghua.edu.cn/platform/build.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/build/bazel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/build/blueprint.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/build/pesto.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/build/soong.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/art.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/bionic.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/bootable/recovery.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/bootable/libbootloader.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/compatibility/cdd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/cts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/dalvik.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/developers/build.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/developers/demos.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/developers/samples/android.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/development.git git clone https://aosp.tuna.tsinghua.edu.cn/device/amlogic/yukawa.git git clone https://aosp.tuna.tsinghua.edu.cn/device/amlogic/yukawa-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/common.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/armv7-a-neon.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/art.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/car.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/common.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/goldfish.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/goldfish-opengl.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/mini-emulator-arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/mini-emulator-armv7-a-neon.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/mini-emulator-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/mini-emulator-x86_64.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/opengl-transport.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/qemu.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/trusty.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/uml.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/x86.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/x86_64.git git clone https://aosp.tuna.tsinghua.edu.cn/device/generic/vulkan-cereal.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/atv.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/barbet.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/barbet-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/barbet-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bluejay.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bluejay-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bluejay-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bonito.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bonito-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bonito-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bramble.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/bramble-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/contexthub.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/coral.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/coral-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/coral-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/gs101.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/gs101-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/gs-common.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/raviole.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/raviole-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/redbull.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/redbull-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/redbull-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/redfin.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/redfin-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/sunfish.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/sunfish-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/sunfish-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/crosshatch.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/crosshatch-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/crosshatch-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/cuttlefish.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/cuttlefish_prebuilts.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/fuchsia.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/trout.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google/vrservices.git git clone https://aosp.tuna.tsinghua.edu.cn/device/google_car.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/dragonboard.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/dragonboard-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/hikey.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/hikey-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/poplar.git git clone https://aosp.tuna.tsinghua.edu.cn/device/linaro/poplar-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/device/mediatek/wembley-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/device/sample.git git clone https://aosp.tuna.tsinghua.edu.cn/device/ti/beagle-x15.git git clone https://aosp.tuna.tsinghua.edu.cn/device/ti/beagle-x15-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/aac.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/abseil-cpp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/adt-infra.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/android-clat.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/androidplot.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/angle.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ant-glob.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/antlr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-commons-bcel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-commons-compress.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-commons-math.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-harmony.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-http.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/apache-xml.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/arm-neon-tests.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/arm-optimized-routines.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/arm-trusted-firmware.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/auto.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/autotest.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/android-nn-driver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/armnn.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/avb.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bazelbuild-rules_android.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bcc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/blktrace.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/boringssl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bouncycastle.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/brotli.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bsdiff.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/bzip2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/caliper.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/capstone.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/catch2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cblas.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cbor-java.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/chromium-trace.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/chromium-webview.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/clang.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cldr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cn-cbor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/compiler-rt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ComputeLibrary.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/connectedappssdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/conscrypt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cpu_features.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cpuinfo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/crcalc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/cros/system_api.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/crosvm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/curl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dagger2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/deqp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/deqp-deps/SPIRV-Headers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/deqp-deps/SPIRV-Tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/deqp-deps/glslang.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/deqp-deps/amber.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/desugar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dexmaker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dlmalloc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dng_sdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dnsmasq.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/doclava.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dokka.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/downloader.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/drm_hwcomposer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/drrickorang.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dtc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/dynamic_depth.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/e2fsprogs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/easymock.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/eigen.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/elfutils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/emma.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/erofs-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/error_prone.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/escapevelocity.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ethtool.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/exoplayer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/expat.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/f2fs-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fastrpc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fdlibm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fec.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fft2d.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/firebase-messaging.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/flac.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/flatbuffers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fonttools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fmtlib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/freetype.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fsck_msdos.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/fsverity-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/FP16.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/FXdiv.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/gemmlowp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/geojson-jackson.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/geonames.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/gflags.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/giflib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/glide.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/golang-protobuf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-benchmark.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-breakpad.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/arbutus-slab.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/barlow.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/karla.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/lustria.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/fraunces.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/big-shoulders-text.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/arvo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/carrois-gothic-sc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/coming-soon.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/cutive-mono.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/dancing-script.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/lato.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/source-sans-pro.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/rubik.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fonts/zilla-slab.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-fruit.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-java-format.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/google-styleguide.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/googletest.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/gptfdisk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/grpc-grpc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/grpc-grpc-java.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/guava.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/guice.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/gwp_asan.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/hamcrest.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/harfbuzz_ng.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/hyphenation-patterns.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/icing.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/icu.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/igt-gpu-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ImageMagick.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/image_io.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ims.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/iperf3.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/iproute2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ipsec-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/iptables.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/iputils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/iw.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jacoco.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jackson-annotations.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jackson-core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jackson-databind.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jarjar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/javaparser.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/javapoet.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/javasqlite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/javassist.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jcommander.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jdiff.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jemalloc_new.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jimfs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jline.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jsilver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jsmn.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jsoncpp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jsr305.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/jsr330.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/junit.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/junit-params.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kernel-headers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kmod.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kotlinc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kotlinx.atomicfu.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kotlinx.coroutines.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/kotlinx.metadata.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ksoap2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libabigail.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libaom.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libavc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libbackup.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libbrillo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcap-ng.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libchrome.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libchromeos-rs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcppbor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcups.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcxx.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libcxxabi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libdivsufsort.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libdrm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libepoxy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libese.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libevent.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libexif.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libffi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libgav1.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libfuse.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libgsm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libhevc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libiio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libjpeg-turbo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libkmsxx.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libldac.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libmpeg2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libnetfilter_conntrack.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libnfnetlink.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libnl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libogg.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libopus.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libpcap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libphonenumber.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libpng.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libprotobuf-mutator.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libsrtp2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libtextclassifier.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libusb.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libutf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libvpx.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libwebm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libwebsockets.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libxaac.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libxkbcommon.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libxml2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/libyuv.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/linux-kselftest.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/llvm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/lmfit.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/lottie.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/lua.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ltp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/lz4.git git clone https://aosp.tuna.tsinghua.edu.cn/toolchain/llvm-project.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/lzma.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/marisa-trie.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/markdown.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mdnsresponder.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mesa3d.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mime-support.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/minigbm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/minijail.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mksh.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mockftpserver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mockito.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mockwebserver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/modp_b64.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mp4parser.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ms-tpm-20-ref.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mtools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/mtpd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/nanohttpd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/nanopb-c.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/naver-fonts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/neon_2_sse.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/neven.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/newfs_msdos.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/nist-pkits.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/nist-sip.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/nos/host/generic.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/noto-fonts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/oauth.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/objenesis.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/oboe.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/oj-libjdwp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/okhttp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/okhttp4.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/okio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/one-true-awk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/opencensus-java.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/OpenCL-CTS.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/OpenCSD.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/openscreen.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/openssh.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/oss-fuzz.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/owasp/sanitizer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/pffft.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/parameter-framework.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/pcre.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/pdfium.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/perfetto.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/piex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/pigweed.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ply.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ppp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/proguard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/protobuf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/psimd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/pthreadpool.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/puffin.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/apitools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/asn1crypto.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/cffi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/cpython2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/cpython3.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/cryptography.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/dateutil.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/enum34.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/funcsigs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/futures.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/google-api-python-client.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/httplib2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/ipaddress.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/jinja.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/markupsafe.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/mock.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/oauth2client.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/parse_type.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pyasn1.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pyasn1-modules.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pybind11.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pycparser.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pyfakefs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/pyopenssl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/rsa.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/setuptools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/six.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/python/uritemplates.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rappor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/replicaisland.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rmi4utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/robolectric-shadows.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/roboto-fonts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rootdev.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/Reactive-Extensions/RxCpp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rnnoise.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/ahash.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/aho-corasick.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/android_logger.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/android_log-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/anyhow.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/arbitrary.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/async-stream.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/async-stream-impl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/async-task.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/async-trait.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/atty.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/bencher.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/bindgen.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/bitflags.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/bstr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/byteorder.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/bytes.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/cast.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/cexpr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/cfg-if.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/chrono.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/clang-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/clap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/crc32fast.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/codespan-reporting.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/criterion.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/criterion-plot.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/crossbeam-channel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/crossbeam-deque.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/crossbeam-epoch.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/crossbeam-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/csv.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/csv-core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/derive_arbitrary.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/downcast-rs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/either.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/env_logger.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/fallible-iterator.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/fallible-streaming-iterator.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/flate2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/fnv.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/form_urlencoded.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-channel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-executor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-io.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-macro.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-sink.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-task.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/futures-util.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/gdbstub.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/gdbstub_arch.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/getrandom.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/glob.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/grpcio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/grpcio-compiler.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/grpcio-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/half.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/hashbrown.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/hashlink.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/heck.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/idna.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/instant.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/intrusive-collections.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/itertools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/itoa.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/lazy_static.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/lazycell.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libfuzzer-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libloading.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libsqlite3-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/libz-sys.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/linked-hash-map.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/lock_api.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/log.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/lru-cache.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/macaddr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/managed.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/matches.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/memchr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/memoffset.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/mio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/nix.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/no-panic.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/nom.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/num-derive.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/num-integer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/num-traits.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/num_cpus.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/once_cell.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/oorandom.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/parking_lot.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/parking_lot_core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/paste.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/peeking_take_while.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/percent-encoding.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/pin-project.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/pin-project-internal.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/pin-project-lite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/pin-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/plotters.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/plotters-backend.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/plotters-svg.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/ppv-lite86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/proc-macro-error.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/proc-macro-error-attr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/proc-macro-hack.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/proc-macro-nested.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/proc-macro2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/protobuf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/protobuf-codegen.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/quiche.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/quote.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rand.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rand_chacha.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rand_core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rand_xorshift.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rayon.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rayon-core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/regex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/regex-automata.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/regex-syntax.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/remain.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/ring.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rusqlite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rustc-hash.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/rustversion.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/ryu.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/same-file.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/scopeguard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/serde.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/serde_cbor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/serde_derive.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/serde_json.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/serde_test.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/shared_child.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/shlex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/slab.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/smallvec.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/spin.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/structopt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/structopt-derive.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/syn.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/syn-mid.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/termcolor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/textwrap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/thiserror.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/thiserror-impl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/thread_local.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tinytemplate.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tinyvec.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tinyvec_macros.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tokio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tokio-macros.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tokio-stream.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/tokio-test.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/unicode-bidi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/unicode-normalization.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/unicode-segmentation.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/unicode-width.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/unicode-xid.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/untrusted.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/url.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/uuid.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/vmm_vhost.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/vsock.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/walkdir.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/weak-table.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/which.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/crates/zip.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/rust/cxx.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ruy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/s2-geometry-library-java.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/scapy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/scrypt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/scudo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/seccomp-tests.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/selinux.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/setupcompat.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/setupdesign.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/sfntly.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/shaderc/spirv-headers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/shflags.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/skia.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/skqp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/sl4a.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/slf4j.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/smali.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/snakeyaml.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/sonic.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/sonivox.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/speex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/sqlite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/squashfs-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/starlark-go.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/strace.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/stressapptest.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/subsampling-scale-image-view.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/swiftshader.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tagsoup.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tcpdump.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tensorflow.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/TestParameterInjector.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/testng.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tflite-support.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/timezone-boundary-builder.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tinyalsa.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tinyalsa_new.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tinycompress.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tinyxml2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/toolchain-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/toybox.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tpm2-tss.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/tremolo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/turbine.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/unicode.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/universal-tween-engine.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/ukey2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/usrsctp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/v4l2_codec2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/vboot_reference.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/virglrenderer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/vixl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/vogar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/volley.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/vulkan-headers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/vulkan-validation-layers.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/walt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/wayland.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/wayland-protocols.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/webp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/webrtc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/wpa_supplicant_8.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/wycheproof.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/xmp_toolkit.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/xz-embedded.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/xz-java.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/XNNPACK.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/yapf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/zlib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/zopfli.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/zstd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/external/zxing.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/av.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/base.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/compile/libbcc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/compile/mclinker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/compile/slang.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/ex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/hardware/interfaces.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/layoutlib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/libs/systemui.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/libs/modules-utils.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/libs/net.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/libs/native_bridge_support.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/libs/service_entitlement.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/minikin.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/multidex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/native.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/bitmap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/calendar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/car/services.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/car/setupwizard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/chips.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/colorpicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/localepicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/net/ethernet.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/net/ims.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/net/voip.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/net/wifi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/photoviewer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/setupwizard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/telephony.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/timezonepicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/tv/tvsystem.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/opt/vcard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/proto_logging.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/rs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/wilhelm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/broadcom/libbt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/broadcom/wlan.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/apf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/av.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/camera.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/easel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/gchips.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/graphics/common.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/graphics/gs101.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/interfaces.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/pixel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/google/pixel-sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/interfaces.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/invensense.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/knowles/athletico/sound_trigger_hal.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/libhardware.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/libhardware_legacy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/nxp/nfc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/nxp/secure_element.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/audio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/bootctrl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/bt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/camera.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/data/ipacfg-mgr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/display.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/keymaster.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8960.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8994.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8996.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8x09.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8x26.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8x27.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/msm8x84.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/power.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/bt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/data/ipacfg-mgr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/display.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/thermal.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sdm845/vr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm7150/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm7250/display.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm7250/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm7250/media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/data/ipacfg-mgr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/display.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/thermal.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150/vr.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/sm8150p/gps.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/qcom/wlan.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/ril.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/samsung/nfc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/st/nfc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/st/secure_element.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/st/secure_element2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/hardware/ti/am57x.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/configs.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/4.19/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/5.4/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/5.4/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/5.10/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/5.10/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/mainline/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/4.19/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/4.19/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/5.10/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/5.10/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/5.4/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/5.4/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/mainline/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/prebuilts/common-modules/virtual-device/mainline/x86-64.git git clone https://aosp.tuna.tsinghua.edu.cn/kernel/tests.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/libcore.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/libnativehelper.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/BasicSmsReceiver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Bluetooth.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Browser2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Calendar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Camera2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Calendar.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/SystemUI.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Cluster.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/DebuggingRestrictionController.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Dialer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Hvac.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/LatinIME.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Launcher.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/LinkViewer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/LocalMediaPlayer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Messenger.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Notification.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Provision.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Radio.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/RotaryController.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/Settings.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/SettingsIntelligence.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/SystemUpdater.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/libs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Car/tests.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/CarrierConfig.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/CellBroadcastReceiver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/CertInstaller.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Contacts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/DeskClock.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/DevCamera.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Dialer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/DocumentsUI.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/EmergencyInfo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Gallery.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Gallery2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/HTMLViewer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/ImsServiceEntitlement.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/KeyChain.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Launcher3.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/LegacyCamera.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/ManagedProvisioning.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Messaging.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Music.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/MusicFX.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Nfc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/OnDeviceAppPrediction.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/OneTimeInitializer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/PhoneCommon.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Protips.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Provision.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/QuickSearchBox.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/QuickAccessWallet.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/RemoteProvisioner.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/SafetyRegulatoryInfo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/SampleLocationAttribution.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/SecureElement.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Settings.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/SettingsIntelligence.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/SpareParts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Stk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/StorageManager.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Tag.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Test/connectivity.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/TimeZoneData.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/TimeZoneUpdater.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/ThemePicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Traceur.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/TvSettings.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/TV.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/UniversalMediaPlayer.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/WallpaperPicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/WallpaperPicker2.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/inputmethods/LatinIME.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/inputmethods/LeanbackIME.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/adb.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/ArtPrebuilt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/BootPrebuilt/5.4/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/BootPrebuilt/5.10/arm64.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/CaptivePortalLogin.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/CellBroadcastService.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/common.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Connectivity.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Cronet.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/ExtServices.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/GeoTZ.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Gki.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/IPsec.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/DnsResolver.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/ModuleMetadata.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/NetworkPermissionConfig.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/NetworkStack.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/NeuralNetworks.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Permission.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/RuntimeI18n.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Scheduling.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/SdkExtensions.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/StatsD.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/TestModule.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Virtualization.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/vndk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/modules/Wifi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/BlockedNumberProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/BookmarkProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/CalendarProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/CallLogProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/ContactsProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/DownloadProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/MediaProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/PartnerBookmarksProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/TelephonyProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/TvProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/providers/UserDictionaryProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/screensavers/Basic.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/screensavers/PhotoTable.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/BuiltInPrintService.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/AlternativeNetworkAccess.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Car.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Iwlan.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Mms.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Mtp.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Telecomm.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/services/Telephony.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/wallpapers/ImageWallpaper.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/wallpapers/LivePicker.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/pdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/platform_testing.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/abi-dumps/ndk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/abi-dumps/platform.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/abi-dumps/vndk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/android-emulator.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/asuite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/bazel/darwin-x86_64.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/bazel/linux-x86_64.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/build-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/bundletool.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/checkcolor.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/checkstyle.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/clang-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/clang/host/darwin-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/clang/host/linux-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/cmdline-tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/devtools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/fuchsia_sdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gdb/darwin-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gdb/linux-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/go/darwin-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/go/linux-x86.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/gradle-plugin.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/jdk/jdk11.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/jdk/jdk8.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/jdk/jdk9.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/manifest-merger.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/maven_repo/android.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/maven_repo/bumptech.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/misc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/art.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/conscrypt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/Connectivity.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/IPsec.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/Media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/MediaProvider.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/Permission.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/Scheduling.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/SdkExtensions.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/StatsD.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/module_sdk/Wifi.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/ndk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/ktlint.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/python/darwin-x86/2.7.5.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/python/linux-x86/2.7.5.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/qemu-kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/remoteexecution-client.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/runtime.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/rust.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/r8.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/sdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/tools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/vndk/v28.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/vndk/v29.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/vndk/v30.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/prebuilts/vndk/v31.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/sdk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/apex.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/bt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/bpf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/bpfprogs.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/ca-certificates.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/chre.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/connectivity/wificond.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/core.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/extras.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/gatekeeper.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/gsid.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/hardware/interfaces.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/hwservicemanager.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/incremental_delivery.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/iorap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/keymaster.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libartpalette.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libbase.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libfmq.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libhidl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libhwbinder.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libprocinfo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libsysprop.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libufdt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libvintf.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/libziparchive.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/linkerconfig.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/logging.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/media.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/libion.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/libdmabufheap.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/libmeminfo.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/libmemtrack.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/libmemunreachable.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/memory/lmkd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/netd.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/nfc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/nvram.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/security.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/sepolicy.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/server_configurable_flags.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/teeui.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/testing/gtest_extras.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/timezone.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/tools/aidl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/tools/hidl.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/tools/mkbootimg.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/tools/sysprop.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/tools/xsdc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/unwinding.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/update_engine.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/vold.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/framework.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/mlts/benchmark.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/mlts/models.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/app_compat/csuite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/cts-root.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/mts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vti/dashboard.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vti/fuzz_test_serving.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vti/test_serving.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/fuzz.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/hal.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/hal-trace.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/kernel.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/nbu.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/performance.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/security.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/vts-testcase/vndk.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/test/catbox.git git clone https://aosp.tuna.tsinghua.edu.cn/toolchain/benchmark.git git clone https://aosp.tuna.tsinghua.edu.cn/toolchain/pgo-profiles.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/aadevtools.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/acloud.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/adt/idea.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/apifinder.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/apksig.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/apkzlib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/asuite.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/base.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/build.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/carrier_settings.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/currysrc.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/dexter.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/doc_generation.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/external_updater.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/external/fat32lib.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/idea.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/metalava.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/motodev.git git clone https://aosp.tuna.tsinghua.edu.cn/tools/platform-compat.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/ndkports.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/repohooks.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/security.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/studio/cloud.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/swt.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/test/connectivity.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/test/graphicsbenchmark.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/test/openhst.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/tradefederation/prebuilts.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/treble.git git clone https://aosp.tuna.tsinghua.edu.cn/platform/tools/trebuchet.git
|
比如我们要下载platform/frameworks/base/目录下的代码,我们可以:
1
| git clone https://android.googlesource.com/platform/frameworks/base
|
不过这个还是会遇到翻墙的问题,当然我们也可以用镜像。镜像地址:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/ ,
如果使用清华的镜像地址。比如我们要下载platform/frameworks/base/目录,就用:
1
| git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/base
|
如果你带宽够的话,一般几分钟就可以下载好你想要的单个源码了。
比如:我们下载下面的所有文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| # 需要重点学习的源码
git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/base
git clone https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/native
# 官方APP的源码 git clone https://aosp.tuna.tsinghua.edu.cn/platform/packages/apps/Launcher2
# 下载系统核心的代码 git clone https://aosp.tuna.tsinghua.edu.cn/platform/system/core
git clone https://aosp.tuna.tsinghua.edu.cn/platform/bionic
git clone https://aosp.tuna.tsinghua.edu.cn/platform/libcore
git clone https://aosp.tuna.tsinghua.edu.cn/platform/art
git clone https://aosp.tuna.tsinghua.edu.cn/kernel/msm
|
如果你想下载单个文件,或者搜索文件名及代码,可以访问 http://androidxref.com/ ,这里有部分Android的源码
源码阅读
通过之前的文档:
Android系统的源码我们已经下载
AOSP的目录结构
Android源码目录
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| |-- Makefile |-- art (art虚拟机相关的代码) |-- bionic (bionic C库) |-- bootable (启动引导相关代码) |-- build (存放系统编译规则及generic等基础开发包配置) |-- cts (Android兼容性测试套件标准) |-- dalvik (dalvik JAVA虚拟机) |-- development (应用程序开发相关) |-- external (android使用的一些开源的模组) |-- frameworks (核心框架——java及C++语言,这个是我们需要重点学习的) |-- hardware (部分厂家开源的硬解适配层HAL代码) |-- out (编译完成后的代码输出与此目录) |-- packages (应用程序包) |-- prebuilt (x86和arm架构下预编译的一些资源) |-- sdk (sdk及模拟器) |-- system (底层文件系统库、应用及组件——C语言) |-- vendor (厂商定制代码)
|
在线阅读
Android在线阅读源码的网站有很多.
比如 http://www.grepcode.com、http://androidxref.com、https://www.androidos.net.cn 等,
这里推荐使用http://androidxref.com进行在线阅读,这个网址提供了Android 1.6到Android 8.0.0的源码,