Home | History | Annotate | Download | only in docs
      1 # Making changes
      2 
      3 ## Coding style
      4 
      5 This project was originally written in C, in the Android platform style.
      6 It has been substantially re-written in C++, in the Google C++ style.
      7 
      8 This style
      9 [is summarized here](https://google.github.io/styleguide/cppguide.html).
     10 
     11 When in doubt, clang-format -style=google is a good reference.
     12 
     13 ## Testing
     14 
     15 This codebase has both integration and unittests, all of which are expected to
     16 consistently pass against a device/emulator:
     17 
     18 ```
     19 $ ./runtests.sh && echo "All tests pass"
     20 
     21 ```
     22