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

Unified Diff: sky/engine/v8_inspector/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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/v8_inspector/BUILD.gn
diff --git a/sky/engine/v8_inspector/BUILD.gn b/sky/engine/v8_inspector/BUILD.gn
index 4691ce0e426e6825eb71da1d93feea6bee195e0e..6b438ba37cc06c7ab9c093a1b39edaf152721bcb 100644
--- a/sky/engine/v8_inspector/BUILD.gn
+++ b/sky/engine/v8_inspector/BUILD.gn
@@ -5,7 +5,7 @@
import("//build/config/ui.gni")
import("//sky/engine/config.gni")
-visibility = ["//sky/*"]
+visibility = [ "//sky/*" ]
gen_dir = "$root_gen_dir/v8_inspector"
@@ -17,10 +17,10 @@ component("v8_inspector") {
"//base",
"//mojo/public/cpp/application",
"//mojo/public/interfaces/application",
- "//sky/engine/core", # FIXME: Remove.
- "//sky/engine/platform", # FIXME: Remove.
+ "//sky/engine/core", # FIXME: Remove.
+ "//sky/engine/platform", # FIXME: Remove.
"//sky/services/inspector:bindings",
- "//sky/engine/core:core_generated", # FIXME: Remove.
+ "//sky/engine/core:core_generated", # FIXME: Remove.
"//sky/engine/wtf",
]
@@ -99,7 +99,8 @@ action("protocol_sources") {
args = [
rebase_path(protocol_file, root_build_dir),
- "--output_dir", rebase_path(gen_dir, root_build_dir),
+ "--output_dir",
+ rebase_path(gen_dir, root_build_dir),
]
deps = [
@@ -110,12 +111,17 @@ action("protocol_sources") {
action("protocol_version") {
script = "generate-inspector-protocol-version"
- inputs = [ protocol_file ]
+ inputs = [
+ protocol_file,
+ ]
output_file = "$gen_dir/InspectorProtocolVersion.h"
- outputs = [ output_file ]
+ outputs = [
+ output_file,
+ ]
args = [
- "-o", rebase_path(output_file, root_build_dir),
+ "-o",
+ rebase_path(output_file, root_build_dir),
rebase_path(protocol_file, root_build_dir),
]
}

Powered by Google App Engine
This is Rietveld 408576698