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

Side by Side Diff: gyp/skia_base_libs.gyp

Issue 15855006: prepare skia for shared library build on android (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebasing Created 7 years, 6 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 | « gyp/shapeops_tool.gyp ('k') | gyp/skia_lib.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 # The minimal set of static libraries for basic Skia functionality.
2 {
3 'variables': {
4 'component_libs': [
5 'core.gyp:core',
6 'opts.gyp:opts',
7 'ports.gyp:ports',
8 'utils.gyp:utils',
9 ],
10 'conditions': [
11 [ 'skia_arch_type == "x86" and skia_os != "android"', {
12 'component_libs': [
13 'opts.gyp:opts_ssse3',
14 ],
15 }],
16 [ 'arm_neon == 1', {
17 'component_libs': [
18 'opts.gyp:opts_neon',
19 ],
20 }],
21 [ 'skia_gpu', {
22 'component_libs': [
23 'gpu.gyp:gr',
24 'gpu.gyp:skgr',
25 ],
26 }],
27 [ 'skia_os == "nacl"', {
28 'component_libs': [
29 'freetype.gyp:freetype',
30 ],
31 }],
32 ],
33 },
34 'targets': [
35 {
36 'target_name': 'skia_base_libs',
37 'type': 'none',
38 'dependencies': [
39 '<@(component_libs)',
40 ],
41 'export_dependent_settings': [
42 '<@(component_libs)',
43 ],
44 },
45 ],
46 }
47
48 # Local Variables:
49 # tab-width:2
50 # indent-tabs-mode:nil
51 # End:
52 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/shapeops_tool.gyp ('k') | gyp/skia_lib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698