OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 The Native Client Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 config("xdiff_config") { | |
6 visibility = [ ":*" ] | |
7 | |
8 cflags = [ "-Wno-sign-compare" ] | |
9 } | |
10 | |
11 static_library("xdiff") { | |
12 configs += [ ":xdiff_config" ] | |
13 | |
14 sources = [ | |
15 "xdiff.h", | |
16 "xdiffi.c", | |
17 "xdiffi.h", | |
18 "xemit.c", | |
19 "xemit.h", | |
20 "xhistogram.c", | |
21 "xinclude.h", | |
22 "xmacros.h", | |
23 "xmerge.c", | |
24 "xpatience.c", | |
25 "xprepare.c", | |
26 "xprepare.h", | |
27 "xtypes.h", | |
28 "xutils.c", | |
29 "xutils.h", | |
30 ] | |
31 } | |
OLD | NEW |