Index: tools/relocation_packer/config.gni |
diff --git a/tools/relocation_packer/config.gni b/tools/relocation_packer/config.gni |
index fec275222fca0994f77c4dc7d3ee2581737cce8d..90e3979337b420166c0723a20137b8172bf09227 100644 |
--- a/tools/relocation_packer/config.gni |
+++ b/tools/relocation_packer/config.gni |
@@ -2,13 +2,12 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-relocation_packing_supported = ( |
- (target_arch == "arm") || (target_arch == "arm64")) |
+relocation_packing_supported = target_arch == "arm" || target_arch == "arm64" |
if (relocation_packing_supported) { |
relocation_packer_target = "//tools/relocation_packer($host_toolchain)" |
- relocation_packer_dir = get_label_info( |
- "$relocation_packer_target", "root_out_dir") |
+ relocation_packer_dir = |
+ get_label_info("$relocation_packer_target", "root_out_dir") |
relocation_packer_exe = "${relocation_packer_dir}/relocation_packer" |
if (target_arch == "arm") { |