Created by: gangliao
This PR exemplifies the advantage of our new building system.
The previous raw CMake to generate each library for each folder, which causes all source code of this library do cpplint
sequentially. In our new building system, each cc_library
composed small piece code, which did cpplint
only depends on its owner target library. Thus, many of cc_library
->cpplint
can run simultaneously.