| 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', |
| 11 'sfnt.gyp:sfnt', | 11 'sfnt.gyp:sfnt', |
| 12 'utils.gyp:utils', | 12 'utils.gyp:utils', |
| 13 ], | 13 ], |
| 14 'conditions': [ | 14 'conditions': [ |
| 15 [ 'skia_arch_type == "x86" and skia_os != "android"', { | 15 [ 'skia_arch_type == "x86" and skia_os != "android"', { |
| 16 'component_libs': [ | 16 'component_libs': [ |
| 17 'opts.gyp:opts_ssse3', | 17 'opts.gyp:opts_ssse3', |
| 18 ], | 18 ], |
| 19 }], | 19 }], |
| 20 [ 'arm_neon == 1', { | 20 [ 'arm_neon == 1', { |
| 21 'component_libs': [ | 21 'component_libs': [ |
| 22 'opts.gyp:opts_neon', | 22 'opts.gyp:opts_neon', |
| 23 ], | 23 ], |
| 24 }], | 24 }], |
| 25 [ 'skia_gpu', { | 25 [ 'skia_gpu', { |
| 26 'component_libs': [ | 26 'component_libs': [ |
| 27 'gpu.gyp:gr', | 27 'gpu.gyp:skgpu', |
| 28 'gpu.gyp:skgr', | |
| 29 ], | 28 ], |
| 30 }], | 29 }], |
| 31 [ 'skia_os == "nacl"', { | 30 [ 'skia_os == "nacl"', { |
| 32 'component_libs': [ | 31 'component_libs': [ |
| 33 'freetype.gyp:freetype', | 32 'freetype.gyp:freetype', |
| 34 ], | 33 ], |
| 35 }], | 34 }], |
| 36 ], | 35 ], |
| 37 }, | 36 }, |
| 38 'targets': [ | 37 'targets': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 63 ], | 62 ], |
| 64 }, | 63 }, |
| 65 ], | 64 ], |
| 66 } | 65 } |
| 67 | 66 |
| 68 # Local Variables: | 67 # Local Variables: |
| 69 # tab-width:2 | 68 # tab-width:2 |
| 70 # indent-tabs-mode:nil | 69 # indent-tabs-mode:nil |
| 71 # End: | 70 # End: |
| 72 # vim: set expandtab tabstop=2 shiftwidth=2: | 71 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |