Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Side by Side Diff: xdiff/BUILD.gn

Issue 1884873008: Add libxdiff library (Closed) Base URL: https://chromium.googlesource.com/native_client/src/third_party.git@master
Patch Set: Add license and README Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | xdiff/COPYING » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | xdiff/COPYING » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698