OLD | NEW |
---|---|
1 # The minimal set of static libraries for basic Skia functionality. | 1 # The minimal set of static libraries for basic Skia functionality. |
2 | 2 |
3 { | 3 { |
4 'variables': { | 4 'variables': { |
5 'component_libs': [ | 5 'component_libs': [ |
6 'core.gyp:core', | 6 'core.gyp:core', |
7 'effects.gyp:effects', | 7 'effects.gyp:effects', |
8 'images.gyp:images', | 8 'images.gyp:images', |
9 'opts.gyp:opts', | 9 'opts.gyp:opts', |
10 'ports.gyp:ports', | 10 'ports.gyp:ports', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
42 [ 'skia_shared_lib', { | 42 [ 'skia_shared_lib', { |
43 'conditions': [ | 43 'conditions': [ |
44 [ 'skia_os == "android"', { | 44 [ 'skia_os == "android"', { |
45 # The name skia will confuse the linker on android into using the system's libskia.so | 45 # The name skia will confuse the linker on android into using the system's libskia.so |
46 # instead of the one packaged with the apk. We simply choose a dif ferent name to fix | 46 # instead of the one packaged with the apk. We simply choose a dif ferent name to fix |
47 # this. | 47 # this. |
48 'product_name': 'skia_android', | 48 'product_name': 'skia_android', |
49 }, { | 49 }, { |
50 'product_name': 'skia', | 50 'product_name': 'skia', |
51 }], | 51 }], |
52 [ 'skia_lua', { | |
53 'dependencies': [ | |
54 'pdf.gyp:pdf', | |
bungeman-skia
2013/06/12 19:16:55
We should at least have a comment here about how a
| |
55 'lua.gyp:lua', | |
56 ], | |
57 }], | |
52 ], | 58 ], |
53 'type': 'shared_library', | 59 'type': 'shared_library', |
54 }, { | 60 }, { |
55 'type': 'none', | 61 'type': 'none', |
56 }], | 62 }], |
57 ], | 63 ], |
58 'dependencies': [ | 64 'dependencies': [ |
59 '<@(component_libs)', | 65 '<@(component_libs)', |
60 ], | 66 ], |
61 'export_dependent_settings': [ | 67 'export_dependent_settings': [ |
62 '<@(component_libs)', | 68 '<@(component_libs)', |
63 ], | 69 ], |
64 }, | 70 }, |
65 ], | 71 ], |
66 } | 72 } |
67 | 73 |
68 # Local Variables: | 74 # Local Variables: |
69 # tab-width:2 | 75 # tab-width:2 |
70 # indent-tabs-mode:nil | 76 # indent-tabs-mode:nil |
71 # End: | 77 # End: |
72 # vim: set expandtab tabstop=2 shiftwidth=2: | 78 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |