OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 group("startup") { | 7 group("startup") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
11 ":app", | 11 ":app", |
12 ":noop", | 12 ":noop", |
13 ] | 13 ] |
14 } | 14 } |
15 | 15 |
16 mojo_native_application("app") { | 16 mojo_native_application("app") { |
17 output_name = "mojo_benchmark_startup" | 17 output_name = "mojo_benchmark_startup" |
18 testonly = true | 18 testonly = true |
19 | 19 |
20 sources = [ "startup.cc" ] | 20 sources = [ |
eseidel
2014/12/05 16:55:42
Wonder why it does this? It seems to make other l
scottmg
2014/12/05 17:04:41
That's per the Brett style guide. https://coderevi
| |
21 "startup.cc", | |
22 ] | |
21 } | 23 } |
22 | 24 |
23 executable("noop") { | 25 executable("noop") { |
24 output_name = "mojo_benchmark_startup_noop" | 26 output_name = "mojo_benchmark_startup_noop" |
25 testonly = true | 27 testonly = true |
26 | 28 |
27 sources = [ "noop.cc" ] | 29 sources = [ |
30 "noop.cc", | |
31 ] | |
28 | 32 |
29 deps = [ "//build/config/sanitizers:deps" ] | 33 deps = [ |
34 "//build/config/sanitizers:deps", | |
35 ] | |
30 } | 36 } |
OLD | NEW |