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 'codec_android.gyp:codec_android', |
13 'effects.gyp:effects', | 13 'effects.gyp:effects', |
14 'images.gyp:images', | 14 'images.gyp:images', |
| 15 'json.gyp:json', |
15 'opts.gyp:opts', | 16 'opts.gyp:opts', |
16 'ports.gyp:ports', | 17 'ports.gyp:ports', |
17 'sfnt.gyp:sfnt', | 18 'sfnt.gyp:sfnt', |
18 'utils.gyp:utils', | 19 'utils.gyp:utils', |
19 ], | 20 ], |
20 'conditions': [ | 21 'conditions': [ |
21 [ '"x86" in skia_arch_type and skia_os != "android"', { | 22 [ '"x86" in skia_arch_type and skia_os != "android"', { |
22 'component_libs': [ | 23 'component_libs': [ |
23 'opts.gyp:opts_ssse3', | 24 'opts.gyp:opts_ssse3', |
24 'opts.gyp:opts_sse41', | 25 'opts.gyp:opts_sse41', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ], | 60 ], |
60 'dependencies': [ | 61 'dependencies': [ |
61 '<@(component_libs)', | 62 '<@(component_libs)', |
62 ], | 63 ], |
63 'export_dependent_settings': [ | 64 'export_dependent_settings': [ |
64 '<@(component_libs)', | 65 '<@(component_libs)', |
65 ], | 66 ], |
66 }, | 67 }, |
67 ], | 68 ], |
68 } | 69 } |
OLD | NEW |