| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # The minimal set of static libraries for basic Skia functionality. | 5 # The minimal set of static libraries for basic Skia functionality. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'component_libs': [ | 9 'component_libs': [ |
| 10 'core.gyp:core', | 10 'core.gyp:core', |
| 11 'codec.gyp:codec', | 11 'codec.gyp:codec', |
| 12 'codec_android.gyp:codec_android', |
| 12 'effects.gyp:effects', | 13 'effects.gyp:effects', |
| 13 'images.gyp:images', | 14 'images.gyp:images', |
| 14 'opts.gyp:opts', | 15 'opts.gyp:opts', |
| 15 'ports.gyp:ports', | 16 'ports.gyp:ports', |
| 16 'sfnt.gyp:sfnt', | 17 'sfnt.gyp:sfnt', |
| 17 'utils.gyp:utils', | 18 'utils.gyp:utils', |
| 18 ], | 19 ], |
| 19 'conditions': [ | 20 'conditions': [ |
| 20 [ '"x86" in skia_arch_type and skia_os != "android"', { | 21 [ '"x86" in skia_arch_type and skia_os != "android"', { |
| 21 'component_libs': [ | 22 'component_libs': [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ], | 59 ], |
| 59 'dependencies': [ | 60 'dependencies': [ |
| 60 '<@(component_libs)', | 61 '<@(component_libs)', |
| 61 ], | 62 ], |
| 62 'export_dependent_settings': [ | 63 'export_dependent_settings': [ |
| 63 '<@(component_libs)', | 64 '<@(component_libs)', |
| 64 ], | 65 ], |
| 65 }, | 66 }, |
| 66 ], | 67 ], |
| 67 } | 68 } |
| OLD | NEW |