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

Unified Diff: chrome/app/BUILD.gn

Issue 754223003: gn format //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update for multiline output 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
« no previous file with comments | « chrome/android/channel.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/BUILD.gn
diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
index dbc8c7c50757bf5d23a1b19f3f487e5b54711aee..cae879864e3035ed1883ce87562037e6321cac92 100644
--- a/chrome/app/BUILD.gn
+++ b/chrome/app/BUILD.gn
@@ -4,7 +4,6 @@
import("//tools/grit/grit_rule.gni")
-
if (is_android) {
import("//build/config/android/rules.gni")
android_generated_java_resources = [
@@ -127,11 +126,8 @@ grit("generated_resources") {
if (is_android) {
java_strings_grd_prebuilt("java_strings_grd") {
grit_output_dir = "$root_gen_dir/chrome/java/res"
- generated_files = rebase_path(
- android_generated_java_resources,
- "java/res",
- "."
- )
+ generated_files =
+ rebase_path(android_generated_java_resources, "java/res", ".")
}
}
@@ -142,13 +138,19 @@ action("make_generated_resources_map") {
script = "//chrome/browser/metrics/variations/generate_resources_map.py"
- inputs = [ "$root_gen_dir/chrome/grit/generated_resources.h" ]
- outputs = [ "$root_gen_dir/chrome/generated_resources_map.cc" ]
+ inputs = [
+ "$root_gen_dir/chrome/grit/generated_resources.h",
+ ]
+ outputs = [
+ "$root_gen_dir/chrome/generated_resources_map.cc",
+ ]
- args = rebase_path(inputs, root_build_dir) +
- rebase_path(outputs, root_build_dir)
+ args =
+ rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir)
- deps = [ ":generated_resources" ]
+ deps = [
+ ":generated_resources",
+ ]
}
# Collect the generated .cc file from make_generated_resources_map and put it
« no previous file with comments | « chrome/android/channel.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698