BUILD.gn 631 B

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