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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 mojo_native_application("trace_me") { | 7 mojo_native_application("benchmark") { |
8 sources = [ | 8 sources = [ |
9 "trace_me_app.cc", | 9 "args.cc", |
| 10 "args.h", |
| 11 "benchmark_app.cc", |
| 12 "event.cc", |
| 13 "event.h", |
| 14 "measurements.cc", |
| 15 "measurements.h", |
| 16 "trace_collector_client.cc", |
| 17 "trace_collector_client.h", |
10 ] | 18 ] |
11 | 19 |
12 deps = [ | 20 deps = [ |
13 "//base", | 21 "//base", |
14 "//mojo/application:application", | 22 "//mojo/application:application", |
15 "//mojo/common:tracing_impl", | 23 "//mojo/common:tracing_impl", |
16 "//mojo/public/cpp/application", | 24 "//mojo/public/cpp/application", |
17 "//mojo/public/cpp/utility", | 25 "//mojo/services/tracing/public/interfaces", |
18 ] | 26 ] |
19 } | 27 } |
OLD | NEW |