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

Side by Side Diff: third_party/harfbuzz/harfbuzz.gyp

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/bzip2/bzip2.gyp ('k') | third_party/libevent/libevent.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../../build/common.gypi', 10 '../../build/common.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'harfbuzz', 14 'target_name': 'harfbuzz',
15 'type': 'static_library', 15 'type': '<(library)',
16 'sources': [ 16 'sources': [
17 'src/harfbuzz-buffer.c', 17 'src/harfbuzz-buffer.c',
18 'src/harfbuzz-stream.c', 18 'src/harfbuzz-stream.c',
19 'src/harfbuzz-dump.c', 19 'src/harfbuzz-dump.c',
20 'src/harfbuzz-gdef.c', 20 'src/harfbuzz-gdef.c',
21 'src/harfbuzz-gpos.c', 21 'src/harfbuzz-gpos.c',
22 'src/harfbuzz-gsub.c', 22 'src/harfbuzz-gsub.c',
23 'src/harfbuzz-impl.c', 23 'src/harfbuzz-impl.c',
24 'src/harfbuzz-open.c', 24 'src/harfbuzz-open.c',
25 'src/harfbuzz-shaper.cpp', 25 'src/harfbuzz-shaper.cpp',
(...skipping 13 matching lines...) Expand all
39 'include_dirs': [ 39 'include_dirs': [
40 'src', 40 'src',
41 ], 41 ],
42 }, 42 },
43 'dependencies': [ 43 'dependencies': [
44 '../../build/linux/system.gyp:freetype2', 44 '../../build/linux/system.gyp:freetype2',
45 ], 45 ],
46 }, 46 },
47 { 47 {
48 'target_name': 'harfbuzz_interface', 48 'target_name': 'harfbuzz_interface',
49 'type': 'static_library', 49 'type': '<(library)',
50 'sources': [ 50 'sources': [
51 'contrib/harfbuzz-freetype.c', 51 'contrib/harfbuzz-freetype.c',
52 'contrib/harfbuzz-unicode.c', 52 'contrib/harfbuzz-unicode.c',
53 'contrib/harfbuzz-unicode-tables.c', 53 'contrib/harfbuzz-unicode-tables.c',
54 ], 54 ],
55 'include_dirs': [ 55 'include_dirs': [
56 'src', 56 'src',
57 'contrib', 57 'contrib',
58 ], 58 ],
59 'direct_dependent_settings': { 59 'direct_dependent_settings': {
60 'include_dirs': [ 60 'include_dirs': [
61 'contrib', 61 'contrib',
62 ], 62 ],
63 }, 63 },
64 'dependencies': [ 64 'dependencies': [
65 '../../build/linux/system.gyp:freetype2', 65 '../../build/linux/system.gyp:freetype2',
66 ], 66 ],
67 }, 67 },
68 ], 68 ],
69 } 69 }
OLDNEW
« no previous file with comments | « third_party/bzip2/bzip2.gyp ('k') | third_party/libevent/libevent.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698