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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « benchmarks/benchmark_runner.py ('k') | benchmarks/startup/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: benchmarks/startup/BUILD.gn
diff --git a/benchmarks/startup/BUILD.gn b/benchmarks/startup/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..4750c7a2e7d8679deca509646ff9e942f70cfa7d
--- /dev/null
+++ b/benchmarks/startup/BUILD.gn
@@ -0,0 +1,30 @@
+# 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.
+
+group("startup") {
+ testonly = true
+
+ deps = [
+ ":app",
+ ":noop",
+ ]
+}
+
+shared_library("app") {
+ output_name = "mojo_benchmark_startup"
+ testonly = true
+
+ sources = [ "startup.cc" ]
+
+ deps = [
+ "//mojo/public/c/system:for_shared_library",
+ ]
+}
+
+executable("noop") {
+ output_name = "mojo_benchmark_startup_noop"
+ testonly = true
+
+ sources = [ "noop.cc" ]
+}
« 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