Index: benchmarks/startup/BUILD.gn |
diff --git a/benchmarks/startup/BUILD.gn b/benchmarks/startup/BUILD.gn |
index 7bb0f95c750052532f152ef9c9b5d8573f1f0fc8..e0284b4df268364cf57f083daece8d3a36a4cb71 100644 |
--- a/benchmarks/startup/BUILD.gn |
+++ b/benchmarks/startup/BUILD.gn |
@@ -17,14 +17,20 @@ mojo_native_application("app") { |
output_name = "mojo_benchmark_startup" |
testonly = true |
- sources = [ "startup.cc" ] |
+ 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
|
+ "startup.cc", |
+ ] |
} |
executable("noop") { |
output_name = "mojo_benchmark_startup_noop" |
testonly = true |
- sources = [ "noop.cc" ] |
+ sources = [ |
+ "noop.cc", |
+ ] |
- deps = [ "//build/config/sanitizers:deps" ] |
+ deps = [ |
+ "//build/config/sanitizers:deps", |
+ ] |
} |