Android adb的Windows源代码在哪里?

Android adb的Windows源代码在哪里?,android,windows,adb,Android,Windows,Adb,我试图了解Androidadb.exe如何在Windows上工作。我找到了以下源代码分支: 然而,根据adb.cpp文件中的快速浏览,这似乎是Linux分支。Windows版本在哪里?(还是我错了?) 注:关于如何导航的信息也将不胜感激。如罗曼·盖伊所言: 它位于Android源代码树中: 在adb.cpp中,有一些类似于以下窗口的引用: // In the past, reading from a pipe before the child process's C Runtime // s

我试图了解Android
adb.exe
如何在Windows上工作。我找到了以下源代码分支:

然而,根据
adb.cpp
文件中的快速浏览,这似乎是Linux分支。Windows版本在哪里?(还是我错了?)

注:关于如何导航的信息也将不胜感激。

如罗曼·盖伊所言:

它位于Android源代码树中:

adb.cpp
中,有一些类似于以下窗口的引用:

// In the past, reading from a pipe before the child process's C Runtime
// started up and called GetFileType() caused a hang: http://blogs.msdn.com/b/oldnewthing/archive/2011/12/02/10243553.aspx#10244216
// This is reportedly fixed in Windows Vista: https://support.microsoft.com/en-us/kb/2009703
// I was unable to reproduce the problem on Windows XP. It sounds like a
// Windows Update may have fixed this: https://www.duckware.com/tech/peeknamedpipe.html
下面介绍如何为Windows构建Android SDK或工具(包括adb):

谢谢。您发布的“如何构建”链接提供了拼图中缺失的部分。它说:“要为Windows构建Android SDK,你需要使用Linux设备。”因此,代码似乎是以可移植的方式为所有三个操作系统编写的。