blob: 7bb0f95c750052532f152ef9c9b5d8573f1f0fc8 [file]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/mojo_application.gni")
group("startup") {
testonly = true
deps = [
":app",
":noop",
]
}
mojo_native_application("app") {
output_name = "mojo_benchmark_startup"
testonly = true
sources = [ "startup.cc" ]
}
executable("noop") {
output_name = "mojo_benchmark_startup_noop"
testonly = true
sources = [ "noop.cc" ]
deps = [ "//build/config/sanitizers:deps" ]
}