summaryrefslogtreecommitdiff
path: root/chromium/tools/metrics/histograms/histogram_paths.py
blob: 64721052a2c94213091bce5084a52fdc90f75a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2017 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.

"""Paths to description XML files in this directory."""

import os
import sys

sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common'))
import path_util

HISTOGRAMS_XML = path_util.GetInputFile(
    'tools/metrics/histograms/histograms.xml')

ENUMS_XML = path_util.GetInputFile(
    'tools/metrics/histograms/enums.xml')

ALL_XMLS = [HISTOGRAMS_XML, ENUMS_XML]