summaryrefslogtreecommitdiff
path: root/common/BUILD.gn
blob: af7de670941f794071c377a1496d20ca9dc55061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
static_library("common") {
  cflags = [
     "-fvisibility=default",
  ]

  sources = [
    "address_obfuscator.cc",
  ]

  include_dirs = [
    "//",
    "//internal_include",
  ]

  deps = [
    "//third_party/libchrome:base",
  ]
}