#!/usr/bin/env vpython
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import sys
import os
from core import system_health_csv_generator
from core import path_util

SYSTEM_HEALTH_CSV = os.path.join(path_util.GetPerfDir(),
                                 'system_health_stories.csv')
if __name__ == '__main__':
  sys.exit(system_health_csv_generator.GenerateSystemHealthCSV(
           SYSTEM_HEALTH_CSV))