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 | |
19 executable("bitmaptools") { | 5 executable("bitmaptools") { |
20 sources = [ | 6 sources = [ |
21 "telemetry/internal/image_processing/bitmaptools.cc", | 7 "telemetry/internal/image_processing/bitmaptools.cc", |
22 ] | 8 ] |
23 | 9 |
24 deps = [ | 10 deps = [ |
25 "//build/config/sanitizers:deps", | 11 "//build/config/sanitizers:deps", |
26 ] | 12 ] |
27 } | 13 } |
OLD | NEW |