aboutsummaryrefslogtreecommitdiff
path: root/catapult/telemetry/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/telemetry/BUILD.gn')
-rw-r--r--catapult/telemetry/BUILD.gn23
1 files changed, 23 insertions, 0 deletions
diff --git a/catapult/telemetry/BUILD.gn b/catapult/telemetry/BUILD.gn
new file mode 100644
index 00000000..f786e3c8
--- /dev/null
+++ b/catapult/telemetry/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2015 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.
+
+group("telemetry_test_support") {
+ # Generic telemetry deps. For now, just include the whole catapult directory.
+ # TODO(nednguyen, aiolos): only include what telemetry needs.
+ # https://github.com/catapult-project/catapult/issues/1953
+ data = [
+ "../",
+ ]
+}
+
+executable("bitmaptools") {
+ sources = [
+ "telemetry/internal/image_processing/bitmaptools.cc",
+ ]
+
+ deps = [
+ "//build/config/sanitizers:deps",
+ "//build/win:default_exe_manifest",
+ ]
+}