summaryrefslogtreecommitdiff
path: root/chromium/third_party/ijar/BUILD.gn
blob: 044edc4d6bd5a020e34c02666405bf3cd8ccb648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2015 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.

# A tool that removes all non-interface-specific parts from a .jar file.

if (current_toolchain == host_toolchain) {
  executable("ijar") {
    sources = [
      "classfile.cc",
      "common.h",
      "ijar.cc",
      "mapped_file.h",
      "zip.cc",
      "zip.h",
    ]
    if (is_win) {
      sources += [ "mapped_file_windows.cc" ]
    } else {
      sources += [ "mapped_file_unix.cc" ]
    }

    # Always build release since this is a build tool.
    if (is_debug) {
      configs -= [ "//build/config:debug" ]
      configs += [ "//build/config:release" ]
    }
    ldflags = [ "-lz" ]
    deps = [
      "//build/config/sanitizers:deps",
    ]
  }
}