mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
24 lines
634 B
Plaintext
24 lines
634 B
Plaintext
|
# 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:exe_and_shlib_deps",
|
||
|
"//build/win:default_exe_manifest",
|
||
|
]
|
||
|
}
|