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

Unified Diff: utils/create_timestamp.gni

Issue 2454703004: GN: Format more gn files (Closed)
Patch Set: Created 4 years, 2 months 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 | « sdk/lib/rules.gni ('k') | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/create_timestamp.gni
diff --git a/utils/create_timestamp.gni b/utils/create_timestamp.gni
index fce5c30e6a95d0aa1a7d902e9daf7ebaa997881c..c579da1e5e3bf9d99b8f8f415eb6c2860507ae29 100644
--- a/utils/create_timestamp.gni
+++ b/utils/create_timestamp.gni
@@ -18,15 +18,18 @@ template("create_timestamp_file") {
path = invoker.path
output = invoker.output
action(target_name) {
- list_args = [path]
+ list_args = [ path ]
if (defined(invoker.pattern)) {
- list_args += [invoker.pattern]
+ list_args += [ invoker.pattern ]
}
- files = exec_script(
- "$_dart_root/tools/list_dart_files.py", list_args, "list lines")
- inputs = ["$_dart_root/tools/list_dart_files.py"] +
+ files = exec_script("$_dart_root/tools/list_dart_files.py",
+ list_args,
+ "list lines")
+ inputs = [ "$_dart_root/tools/list_dart_files.py" ] +
rebase_path(files, new_base, current_base)
- outputs = [ output ]
+ outputs = [
+ output,
+ ]
script = "$_dart_root/tools/create_timestamp_file.py"
args = [ rebase_path(output) ]
}
« no previous file with comments | « sdk/lib/rules.gni ('k') | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698