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

Unified Diff: third_party/freetype-android/freetype.gyp

Issue 1155743013: Move third_party/freetype DEPS to third_party/freetype-android/src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually update security property. Created 5 years, 7 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/freetype-android/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/freetype-android/freetype.gyp
diff --git a/third_party/freetype-android/freetype.gyp b/third_party/freetype-android/freetype.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..5db04b81f2659a671289e4d231a66fa961767541
--- /dev/null
+++ b/third_party/freetype-android/freetype.gyp
@@ -0,0 +1,59 @@
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'conditions': [
+ [ 'OS == "android"', {
+ 'targets': [
+ {
+ 'target_name': 'ft2',
+ 'type': 'static_library',
+ 'toolsets': ['target'],
+ 'sources': [
+ # The following files are not sorted alphabetically, but in the
+ # same order as in Android.mk to ease maintenance.
+ 'src/src/base/ftbbox.c',
+ 'src/src/base/ftbitmap.c',
+ 'src/src/base/ftfstype.c',
+ 'src/src/base/ftglyph.c',
+ 'src/src/base/ftlcdfil.c',
+ 'src/src/base/ftstroke.c',
+ 'src/src/base/fttype1.c',
+ 'src/src/base/ftxf86.c',
+ 'src/src/base/ftbase.c',
+ 'src/src/base/ftsystem.c',
+ 'src/src/base/ftinit.c',
+ 'src/src/base/ftgasp.c',
+ 'src/src/base/ftmm.c',
+ 'src/src/gzip/ftgzip.c',
+ 'src/src/raster/raster.c',
+ 'src/src/sfnt/sfnt.c',
+ 'src/src/smooth/smooth.c',
+ 'src/src/autofit/autofit.c',
+ 'src/src/truetype/truetype.c',
+ 'src/src/cff/cff.c',
+ 'src/src/psnames/psnames.c',
+ 'src/src/pshinter/pshinter.c',
+ ],
+ 'dependencies': [
+ '../libpng/libpng.gyp:libpng',
+ '../zlib/zlib.gyp:zlib',
+ ],
+ 'include_dirs': [
+ 'src/include',
+ ],
+ 'defines': [
+ 'FT2_BUILD_LIBRARY',
+ 'DARWIN_NO_CARBON',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../../third_party/freetype-android/src/include',
+ ],
+ },
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « third_party/freetype-android/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698