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

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

Issue 773283006: Run gn format on all BUILD.gn files (gn version 306668) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « BUILD.gn ('k') | examples/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | examples/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698