Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: benchmarks/startup/BUILD.gn

Issue 724243002: Add a startup benchmark and rudimentary scripts for running benchmarks. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « benchmarks/benchmark_runner.py ('k') | benchmarks/startup/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « benchmarks/benchmark_runner.py ('k') | benchmarks/startup/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698