target_spec.py 902 B

1234567891011121314151617181920212223242526
  1. # Copyright 2018 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. # Fields for use when working with a physical linux device connected locally
  5. linux_device_ip = "192.168.42.32"
  6. linux_device_user = "potat"
  7. fuchsia_device_ip = "192.168.42.64"
  8. # The linux build directory.
  9. linux_out_dir = "out/default"
  10. # The fuchsia build directory.
  11. fuchsia_out_dir = "out/fuchsia"
  12. # The location in src that will store final statistical data on perftest results
  13. results_dir = "results"
  14. # The location in src that stores the information from each comparative
  15. # invocation of a perftest
  16. raw_linux_dir = results_dir + "/linux_raw"
  17. raw_fuchsia_dir = results_dir + "/fuchsia_raw"
  18. # A list of test targets to deploy to both devices. Stick to *_perftests.
  19. test_targets = [
  20. "base:base_perftests",
  21. "net:net_perftests",
  22. ]