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

Unified Diff: chrome/chrome_repack_locales.gni

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/browser/ui/libgtk2ui/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_repack_locales.gni
diff --git a/chrome/chrome_repack_locales.gni b/chrome/chrome_repack_locales.gni
index b8ef524025646160ec1b524c1a97dd7375abad05..9754d739259f1fd5373edc8ef32efd48566745bb 100644
--- a/chrome/chrome_repack_locales.gni
+++ b/chrome/chrome_repack_locales.gni
@@ -37,12 +37,8 @@ template("_repack_one_locale") {
]
if (use_ash) {
- sources += [
- "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak",
- ]
- deps += [
- "//ash/strings",
- ]
+ sources += [ "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak" ]
+ deps += [ "//ash/strings" ]
}
if (is_chromeos) {
sources += [
@@ -67,16 +63,13 @@ template("_repack_one_locale") {
]
}
if (enable_autofill_dialog && !is_ios && !is_android) {
- sources += [
- "${root_gen_dir}/third_party/libaddressinput/address_input_strings_${locale}.pak",
- ]
- deps += [
- "//third_party/libaddressinput:strings",
- ]
+ sources += [ "${root_gen_dir}/third_party/libaddressinput/address_input_strings_${locale}.pak" ]
+ deps += [ "//third_party/libaddressinput:strings" ]
}
if (enable_extensions) {
sources += [
"${root_gen_dir}/device/bluetooth/device_bluetooth_strings_${locale}.pak",
+
# TODO(jamescook): When Android stops building extensions code move
# this to the OS != 'ios' and OS != 'android' section.
"${root_gen_dir}/extensions/strings/extensions_strings_${locale}.pak",
@@ -88,19 +81,12 @@ template("_repack_one_locale") {
}
if (is_chrome_branded) {
- sources += [
- "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak",
- ]
- deps += [
- "//chrome/app:google_chrome_strings",
- ]
+ sources +=
+ [ "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak" ]
+ deps += [ "//chrome/app:google_chrome_strings" ]
} else {
- sources += [
- "${root_gen_dir}/chrome/chromium_strings_${locale}.pak",
- ]
- deps += [
- "//chrome/app:chromium_strings",
- ]
+ sources += [ "${root_gen_dir}/chrome/chromium_strings_${locale}.pak" ]
+ deps += [ "//chrome/app:chromium_strings" ]
}
output = invoker.output
« no previous file with comments | « chrome/browser/ui/libgtk2ui/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698