screenshot.py 352 B

12345678910111213
  1. #!/usr/bin/env vpython3
  2. # Copyright 2015 The Chromium Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. import sys
  6. import devil_chromium
  7. from devil.android.tools import screenshot
  8. if __name__ == '__main__':
  9. devil_chromium.Initialize()
  10. sys.exit(screenshot.main())