Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 group("startup") { | |
| 6 testonly = true | |
| 7 | |
| 8 deps = [ | |
| 9 ":app", | |
| 10 ":noop", | |
| 11 ] | |
| 12 } | |
| 13 | |
| 14 shared_library("app") { | |
| 15 output_name = "mojo_benchmark_startup" | |
| 16 testonly = true | |
| 17 | |
| 18 sources = [ "startup.cc" ] | |
| 19 | |
| 20 deps = [ | |
| 21 "//mojo/public/c/system:for_shared_library", | |
| 22 ] | |
| 23 } | |
| 24 | |
| 25 executable("noop") { | |
| 26 output_name = "mojo_benchmark_startup_noop" | |
| 27 testonly = true | |
| 28 | |
| 29 sources = [ "noop.cc" ] | |
| 30 } | |
| OLD | NEW |