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

Unified Diff: third_party/harfbuzz-ng/src/Makefile.am

Issue 9223010: Update harfbuzz-ng to 1a5a91dc0d8bf4b72a2f22dc6300b06ad7000b79. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use -M option for 'git diff' to patch correctly Created 8 years, 11 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 | « third_party/harfbuzz-ng/harfbuzz.gyp ('k') | third_party/harfbuzz-ng/src/check-c-linkage-decls.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/harfbuzz-ng/src/Makefile.am
diff --git a/third_party/harfbuzz-ng/src/Makefile.am b/third_party/harfbuzz-ng/src/Makefile.am
deleted file mode 100644
index 13107b96234e9e3ba8d3ba2879bb6e135fa0acb1..0000000000000000000000000000000000000000
--- a/third_party/harfbuzz-ng/src/Makefile.am
+++ /dev/null
@@ -1,147 +0,0 @@
-# Process this file with automake to produce Makefile.in
-
-NULL =
-EXTRA_DIST =
-
-# The following warning options are useful for debugging: -Wpadded -Wcast-align
-#AM_CXXFLAGS =
-
-lib_LTLIBRARIES = libharfbuzz.la
-
-HBCFLAGS =
-HBLIBS =
-HBSOURCES = \
- hb-blob.c \
- hb-blob-private.h \
- hb-buffer.cc \
- hb-buffer-private.hh \
- hb-common.c \
- hb-font.cc \
- hb-font-private.h \
- hb-object-private.h \
- hb-open-file-private.hh \
- hb-open-type-private.hh \
- hb-language.c \
- hb-ot-head-private.hh \
- hb-private.h \
- hb-shape.cc \
- hb-unicode.c \
- hb-unicode-private.h \
- $(NULL)
-HBHEADERS = \
- hb.h \
- hb-blob.h \
- hb-buffer.h \
- hb-common.h \
- hb-font.h \
- hb-language.h \
- hb-shape.h \
- hb-unicode.h \
- $(NULL)
-
-HBSOURCES += \
- hb-ot-layout.cc \
- hb-ot-layout-common-private.hh \
- hb-ot-layout-gdef-private.hh \
- hb-ot-layout-gpos-private.hh \
- hb-ot-layout-gsubgpos-private.hh \
- hb-ot-layout-gsub-private.hh \
- hb-ot-layout-private.hh \
- hb-ot-map.cc \
- hb-ot-map-private.hh \
- hb-ot-shape.cc \
- hb-ot-shape-complex-arabic.cc \
- hb-ot-shape-complex-arabic-table.h \
- hb-ot-shape-complex-private.hh \
- hb-ot-shape-private.hh \
- hb-ot-tag.c \
- $(NULL)
-HBHEADERS += \
- hb-ot.h \
- hb-ot-layout.h \
- hb-ot-shape.h \
- hb-ot-tag.h \
- $(NULL)
-
-if HAVE_GLIB
-HBCFLAGS += $(GLIB_CFLAGS)
-HBLIBS += $(GLIB_LIBS)
-HBSOURCES += \
- hb-glib.c \
- $(NULL)
-HBHEADERS += \
- hb-glib.h \
- $(NULL)
-endif
-
-if HAVE_ICU
-HBCFLAGS += $(ICU_CFLAGS)
-HBLIBS += $(ICU_LIBS)
-HBSOURCES += \
- hb-icu.c \
- $(NULL)
-HBHEADERS += \
- hb-icu.h \
- $(NULL)
-endif
-
-if HAVE_FREETYPE
-HBCFLAGS += $(FREETYPE_CFLAGS)
-HBLIBS += $(FREETYPE_LIBS)
-HBSOURCES += \
- hb-ft.c \
- $(NULL)
-HBHEADERS += \
- hb-ft.h \
- $(NULL)
-endif
-
-if HAVE_GRAPHITE
-HBCFLAGS += $(GRAPHITE_CFLAGS)
-HBLIBS += $(GRAPHITE_LIBS)
-HBSOURCES += \
- hb-graphite.cc \
- $(NULL)
-HBHEADERS += \
- hb-graphite.h \
- $(NULL)
-endif
-
-CXXLINK = $(LINK)
-libharfbuzz_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
-libharfbuzz_la_CPPFLAGS = $(HBCFLAGS)
-libharfbuzz_la_LIBADD = $(HBLIBS)
-pkginclude_HEADERS = $(HBHEADERS)
-
-
-GENERATORS = \
- gen-arabic-joining-table.py \
- $(NULL)
-
-EXTRA_DIST += $(GENERATORS)
-
-noinst_PROGRAMS = main test
-
-main_SOURCES = main.cc
-main_CPPFLAGS = $(HBCFLAGS)
-main_LDADD = libharfbuzz.la $(HBLIBS)
-
-test_SOURCES = test.c
-test_CPPFLAGS = $(HBCFLAGS)
-test_LDADD = libharfbuzz.la $(HBLIBS)
-
-TESTS = \
- check-c-linkage-decls.sh \
- check-header-guards.sh \
- check-internal-symbols.sh \
- $(NULL)
-
-if HAVE_ICU
-else
-if HAVE_GRAPHITE
-else
-TESTS += check-libstdc++.sh
-endif
-endif
-
--include $(top_srcdir)/git.mk
« no previous file with comments | « third_party/harfbuzz-ng/harfbuzz.gyp ('k') | third_party/harfbuzz-ng/src/check-c-linkage-decls.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698