Add a tools/python/OWNERS file

Change-Id: I35400468cf4027bea39f30967190376848f1b6c7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3401518
Reviewed-by: Peter Wen <wnwen@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@google.com>
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/main@{#961141}
NOKEYCHECK=True
GitOrigin-RevId: 580e9a3cefe85e79999537df085f1c2608d575e8
4 files changed
tree: a8de5a894a0b932ce5fddf8266ba388e71d44738
  1. google/
  2. .style.yapf
  3. llvm_symbolizer.py
  4. OWNERS
  5. README.md
README.md

//tools/python

This directory is meant to contain Python code that is:

  1. Not platform-specific (e.g. //tools/android/python_utils).
  2. Useful to multiple other tools.

All Python code that is used by GN actions or templates within //build must live under //build, since that directory cannot have deps outside of it. However, code here can be used by GN actions or templates that live outside of //build.

When adding code to this directory, or when adding a dep onto code that lives in this directory, please consider whether or not duplicating the code would actually a better choice. Code re-use is helpful, but dependencies also come with a cost, especially when it comes to being able to test changes to shared code.