summaryrefslogtreecommitdiffstats
path: root/tools/relocation_packer/config.gni
blob: fec275222fca0994f77c4dc7d3ee2581737cce8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2014 The Chromium Authors. All rights reserved.
# 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"))

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_exe = "${relocation_packer_dir}/relocation_packer"

  if (target_arch == "arm") {
    relocations_have_addends = 0
  } else if (target_arch == "arm64") {
    relocations_have_addends = 1
  }
} else {
  relocations_have_addends = 0
  relocation_packer_exe = ""
}