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

Side by Side Diff: tools/relocation_packer/config.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 unified diff | Download patch
« no previous file with comments | « tools/relocation_packer/BUILD.gn ('k') | tools/xdisplaycheck/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 relocation_packing_supported = ( 5 relocation_packing_supported = target_arch == "arm" || target_arch == "arm64"
6 (target_arch == "arm") || (target_arch == "arm64"))
7 6
8 if (relocation_packing_supported) { 7 if (relocation_packing_supported) {
9 relocation_packer_target = "//tools/relocation_packer($host_toolchain)" 8 relocation_packer_target = "//tools/relocation_packer($host_toolchain)"
10 relocation_packer_dir = get_label_info( 9 relocation_packer_dir =
11 "$relocation_packer_target", "root_out_dir") 10 get_label_info("$relocation_packer_target", "root_out_dir")
12 relocation_packer_exe = "${relocation_packer_dir}/relocation_packer" 11 relocation_packer_exe = "${relocation_packer_dir}/relocation_packer"
13 12
14 if (target_arch == "arm") { 13 if (target_arch == "arm") {
15 relocations_have_addends = 0 14 relocations_have_addends = 0
16 } else if (target_arch == "arm64") { 15 } else if (target_arch == "arm64") {
17 relocations_have_addends = 1 16 relocations_have_addends = 1
18 } 17 }
19 } else { 18 } else {
20 relocations_have_addends = 0 19 relocations_have_addends = 0
21 relocation_packer_exe = "" 20 relocation_packer_exe = ""
22 } 21 }
OLDNEW
« no previous file with comments | « tools/relocation_packer/BUILD.gn ('k') | tools/xdisplaycheck/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698