OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
| 5 group("telemetry_test_support") { |
| 6 # Generic telemetry deps |
| 7 data = [ |
| 8 "//build/android/devil/", |
| 9 "//build/android/pylib/", |
| 10 "//build/util/", |
| 11 "//third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js", |
| 12 "//third_party/WebKit/PerformanceTests/resources/statistics.js", |
| 13 "//third_party/flot/jquery.flot.min.js", |
| 14 "//third_party/webpagereplay/", |
| 15 "//tools/telemetry/", |
| 16 ] |
| 17 } |
| 18 |
5 executable("bitmaptools") { | 19 executable("bitmaptools") { |
6 sources = [ | 20 sources = [ |
7 "telemetry/internal/image_processing/bitmaptools.cc", | 21 "telemetry/internal/image_processing/bitmaptools.cc", |
8 ] | 22 ] |
9 | 23 |
10 deps = [ | 24 deps = [ |
11 "//build/config/sanitizers:deps", | 25 "//build/config/sanitizers:deps", |
12 ] | 26 ] |
13 } | 27 } |
OLD | NEW |