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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | xdiff/COPYING » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xdiff/BUILD.gn
diff --git a/xdiff/BUILD.gn b/xdiff/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8cc00dc2095b052dfd10c7fc5129cf117ed4afc1
--- /dev/null
+++ b/xdiff/BUILD.gn
@@ -0,0 +1,31 @@
+# Copyright 2016 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+config("xdiff_config") {
+ visibility = [ ":*" ]
+
+ cflags = [ "-Wno-sign-compare" ]
+}
+
+static_library("xdiff") {
+ configs += [ ":xdiff_config" ]
+
+ sources = [
+ "xdiff.h",
+ "xdiffi.c",
+ "xdiffi.h",
+ "xemit.c",
+ "xemit.h",
+ "xhistogram.c",
+ "xinclude.h",
+ "xmacros.h",
+ "xmerge.c",
+ "xpatience.c",
+ "xprepare.c",
+ "xprepare.h",
+ "xtypes.h",
+ "xutils.c",
+ "xutils.h",
+ ]
+}
« 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