• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  // This file will NOT be submited in final version. Used to test
3  // flags/config/parsing. The idea is this file can be share to quickly set up
4  // and recreate config to benchmark
5  browsers: {
6    "chrome-stable": {
7      path: "chrome-stable",
8      flags: [
9        // You can pass a user-data-dir path to the --user-data-dir flag.
10        // Usefull in scenarios where the users wants to use an existent
11        // user-data-dir instead of creating a new temporary directory.
12        --user-data-dir="PATH/SOMETHING/SOMETHING",
13        //--start-fullscreen=true,
14        --start-maximized=true,
15        --center-mouse=true
16      ]
17    }
18  },
19  env: {
20    "disk_min_free_space_gib": null,
21    "power_use_battery": true,
22    "screen_brightness_percent": 60,
23    "cpu_max_usage_percent": 98,
24    "cpu_min_relative_speed": 1,
25    "system_allow_monitoring": false,
26    "browser_allow_existing_process": false,
27    "browser_is_headless": false,
28    "require_probes": true,
29    "system_forbidden_process_names": "",
30    "screen_allow_autobrightness": false,
31  },
32  probes: {
33    "powersampler": {
34      bin_path: "/Users/aattar/chromium/src/out/Release/power_sampler",
35      // Use sampling_interval=0 to use '--sample-on-notification' instead of
36      // specifying an explicit sampling_interval
37      sampling_interval: 0,
38      wait_for_battery: false,
39    },
40  }
41}
42