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

Side by Side Diff: gyp/edtaa.gyp

Issue 41213003: Hook in rough distance field support for fonts (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Replace magic number 32 with constant; fix comment in shader; fix Linux compiler error. Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « gyp/common_variables.gypi ('k') | gyp/gpu.gyp » ('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 #
2 # Copyright 2013 Google Inc.
3 #
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6 #
7
8
9 {
10 'targets': [
11 {
12 'target_name': 'edtaa',
13 'type': 'none',
14 'conditions': [
15 [ 'skia_distancefield_fonts', {
16 'type': 'static_library',
17 'sources': [
18 '../third_party/edtaa/edtaa3func.cpp',
19 ],
20 'include_dirs': [
21 '../third_party/edtaa/',
22 ],
23 'all_dependent_settings': {
24 'include_dirs': [
25 '../third_party/edtaa/',
26 ],
27 },
28 }],
29 ],
30 },
31 ],
32 }
33
34 # Local Variables:
35 # tab-width:2
36 # indent-tabs-mode:nil
37 # End:
38 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | gyp/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698