1# Copyright 2015 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
5group("telemetry_test_support") {
6  # Generic telemetry deps. For now, just include the whole catapult directory.
7  # TODO(nednguyen, aiolos): only include what telemetry needs.
8  # https://github.com/catapult-project/catapult/issues/1953
9  data = [
10    "../",
11  ]
12}
13
14executable("bitmaptools") {
15  sources = [
16    "telemetry/internal/image_processing/bitmaptools.cc",
17  ]
18
19  deps = [
20    "//build/config/sanitizers:deps",
21  ]
22}
23