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

Unified Diff: remoting/remoting_version.gni

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net 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 | « remoting/protocol/BUILD.gn ('k') | remoting/resources/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_version.gni
diff --git a/remoting/remoting_version.gni b/remoting/remoting_version.gni
index 53e83398c60db355ded70a41c7a4ef0adf2b1da7..8f1bbc075a1f2bd167bb8f7a29d737655427e79b 100644
--- a/remoting/remoting_version.gni
+++ b/remoting/remoting_version.gni
@@ -21,50 +21,66 @@ _script_deps = [
_chrome_version_path = rebase_path(_chrome_version_abspath, root_build_dir)
_remoting_version_path = rebase_path(_remoting_version_abspath, root_build_dir)
-_remoting_branding_path = rebase_path(_remoting_branding_abspath,
- root_build_dir)
+_remoting_branding_path =
+ rebase_path(_remoting_branding_abspath, root_build_dir)
-version_major = exec_script(
- _version_py_abspath,
- [ "-f", _chrome_version_path,
- "-f", _remoting_version_path,
- "-t \"@MAJOR@\"" ],
- "value",
- _script_deps)
+version_major = exec_script(_version_py_abspath,
+ [
+ "-f",
+ _chrome_version_path,
+ "-f",
+ _remoting_version_path,
+ "-t \"@MAJOR@\"",
+ ],
+ "value",
+ _script_deps)
-version_minor = exec_script(
- _version_py_abspath,
- [ "-f", _remoting_version_path,
- "-t \"@REMOTING_PATCH@\"" ],
- "value",
- _script_deps)
+version_minor = exec_script(_version_py_abspath,
+ [
+ "-f",
+ _remoting_version_path,
+ "-t \"@REMOTING_PATCH@\"",
+ ],
+ "value",
+ _script_deps)
-version_short = "${version_major}.${version_minor}." + exec_script(
- _version_py_abspath,
- [ "-f", _chrome_version_path,
- "-f", _remoting_version_path,
- "-t \"@BUILD@\"" ],
- "value",
- _script_deps)
+version_short =
+ "${version_major}.${version_minor}." + exec_script(_version_py_abspath,
+ [
+ "-f",
+ _chrome_version_path,
+ "-f",
+ _remoting_version_path,
+ "-t \"@BUILD@\"",
+ ],
+ "value",
+ _script_deps)
-version_full = "${version_short}." + exec_script(
- _version_py_abspath,
- [ "-f", _chrome_version_path,
- "-f", _remoting_version_path,
- "-t \"@PATCH@\"" ],
- "value",
- _script_deps)
+version_full = "${version_short}." + exec_script(_version_py_abspath,
+ [
+ "-f",
+ _chrome_version_path,
+ "-f",
+ _remoting_version_path,
+ "-t \"@PATCH@\"",
+ ],
+ "value",
+ _script_deps)
-prefpane_bundle_name = exec_script(
- _version_py_abspath,
- [ "-f", _remoting_branding_path,
- "-t \"@MAC_PREFPANE_BUNDLE_NAME@\"" ],
- "value",
- _script_deps)
+prefpane_bundle_name = exec_script(_version_py_abspath,
+ [
+ "-f",
+ _remoting_branding_path,
+ "-t \"@MAC_PREFPANE_BUNDLE_NAME@\"",
+ ],
+ "value",
+ _script_deps)
-host_bundle_name = exec_script(
- _version_py_abspath,
- [ "-f", _remoting_branding_path,
- "-t \"@MAC_HOST_BUNDLE_NAME@\"" ],
- "value",
- _script_deps)
+host_bundle_name = exec_script(_version_py_abspath,
+ [
+ "-f",
+ _remoting_branding_path,
+ "-t \"@MAC_HOST_BUNDLE_NAME@\"",
+ ],
+ "value",
+ _script_deps)
« no previous file with comments | « remoting/protocol/BUILD.gn ('k') | remoting/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698