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

Unified Diff: utils/application_snapshot.gni

Issue 2951133002: Mostly revert "[fuchsia] Prepare for setting the Dart target architecture appropriately in the host… (Closed)
Patch Set: Created 3 years, 6 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 | « runtime/vm/BUILD.gn ('k') | utils/dartanalyzer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/application_snapshot.gni
diff --git a/utils/application_snapshot.gni b/utils/application_snapshot.gni
index f2d83193cddd1e7a305d2ddd2085ee090af1f4e6..7eac2be146e61a2381e9add6892189cc008e089f 100644
--- a/utils/application_snapshot.gni
+++ b/utils/application_snapshot.gni
@@ -28,7 +28,7 @@ template("application_snapshot") {
if (defined(invoker.deps)) {
extra_deps += invoker.deps
}
- extra_inputs = [ main_dart ]
+ extra_inputs = [main_dart]
zra 2017/06/21 21:46:50 We should probably keep the formatting fixes.
if (defined(invoker.inputs)) {
extra_inputs += invoker.inputs
}
@@ -50,22 +50,16 @@ template("application_snapshot") {
abs_output = rebase_path(output)
main_file = rebase_path(main_dart)
- args = [
- "--packages=$dot_packages",
- "--snapshot=$abs_output",
- ]
+ args = [ "--packages=$dot_packages",
+ "--snapshot=$abs_output" ]
if (dart_snapshot_kind == "script") {
- args += [
- "--snapshot-kind=script",
- main_file,
- ]
+ args += ["--snapshot-kind=script",
+ main_file ]
assert(training_args != "", "Ignoring unused argument")
} else if (dart_snapshot_kind == "app-jit") {
- args += [
- "--snapshot-kind=app-jit",
- main_file,
- ] + training_args
+ args += ["--snapshot-kind=app-jit",
+ main_file ] + training_args
} else {
assert(false, "Bad dart_snapshot_kind: $dart_snapshot_kind")
}
« no previous file with comments | « runtime/vm/BUILD.gn ('k') | utils/dartanalyzer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698