OLD | NEW |
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 = target_arch == "arm" || target_arch == "arm64" | 5 relocation_packing_supported = target_cpu == "arm" || target_cpu == "arm64" |
6 | 6 |
7 if (relocation_packing_supported) { | 7 if (relocation_packing_supported) { |
8 relocation_packer_target = "//tools/relocation_packer($host_toolchain)" | 8 relocation_packer_target = "//tools/relocation_packer($host_toolchain)" |
9 relocation_packer_dir = | 9 relocation_packer_dir = |
10 get_label_info("$relocation_packer_target", "root_out_dir") | 10 get_label_info("$relocation_packer_target", "root_out_dir") |
11 relocation_packer_exe = "${relocation_packer_dir}/relocation_packer" | 11 relocation_packer_exe = "${relocation_packer_dir}/relocation_packer" |
12 | 12 |
13 if (target_arch == "arm") { | 13 if (target_cpu == "arm") { |
14 relocations_have_addends = 0 | 14 relocations_have_addends = 0 |
15 } else if (target_arch == "arm64") { | 15 } else if (target_cpu == "arm64") { |
16 relocations_have_addends = 1 | 16 relocations_have_addends = 1 |
17 } | 17 } |
18 } else { | 18 } else { |
19 relocations_have_addends = 0 | 19 relocations_have_addends = 0 |
20 relocation_packer_exe = "" | 20 relocation_packer_exe = "" |
21 } | 21 } |
OLD | NEW |