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

Side by Side Diff: gyp/sfntly.gyp

Issue 1134683006: SkPDF: Add Sfntly to DEPS, gyp, SkUserConfig (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-05-18 (Monday) 13:33:42 EDT 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 unified diff | Download patch
« no previous file with comments | « gyp/pdf.gyp ('k') | src/pdf/SkPDFFont.cpp » ('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 (c) 2011 The Chromium 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 'targets': [
6 {
7 'target_name': 'sfntly',
8 'type': 'static_library',
9 'includes': [
10 'common_conditions.gypi',
11 'common_variables.gypi',
12 ],
13 'variables': {
14 'sfntly_src_path': '../third_party/externals/sfntly',
15 },
16 'direct_dependent_settings': {
17 'include_dirs': [ '<(sfntly_src_path)/sample/chromium', ],
18 'defines': [
19 'SK_SFNTLY_SUBSETTER="font_subsetter.h"',
20 ],
21 },
22 'sources': [
23 '<(sfntly_src_path)/sample/chromium/font_subsetter.cc',
24 '<(sfntly_src_path)/sample/chromium/subsetter_impl.cc',
25 '<!@(python find.py ../third_party/externals/sfntly/sfntly "*.c*")'
26 ],
27 'include_dirs': [
28 '<(sfntly_src_path)',
29 ],
30 'defines': [
31 'SFNTLY_NO_EXCEPTION',
32 ],
33 'dependencies' : [
34 'icu.gyp:icuuc',
35 ],
36 'conditions': [
37 [ 'skia_os == "win"',
38 {
39 'defines': [ 'WIN32', ],
40 'msvs_settings': {
41 'VCCLCompilerTool': {
42 'AdditionalOptions': [ '/EHsc' ],
43 },
44 },
45 }
46 ],
47 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]',
48 { 'link_settings': { 'libraries': [ '-lpthread', ], }, },
49 ],
50 ],
51 # TODO(jschuh): http://crbug.com/167187
52 'msvs_disabled_warnings': [ 4267, 4244 ],
53 },
54 ]
55 }
OLDNEW
« no previous file with comments | « gyp/pdf.gyp ('k') | src/pdf/SkPDFFont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698