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

Side by Side Diff: gyp/skia_lib.gyp

Issue 1636563002: Initial support for turning Skia draws into a JSON document and vice versa. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed some build issues Created 4 years, 11 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698