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 # Build ALMOST everything provided by Skia; this should be the default target. | 5 # Build ALMOST everything provided by Skia; this should be the default target. |
6 # | 6 # |
7 # This omits the following targets that many developers won't want to build: | 7 # This omits the following targets that many developers won't want to build: |
8 # - debugger: this requires QT to build | 8 # - debugger: this requires QT to build |
9 # | 9 # |
10 { | 10 { |
(...skipping 41 matching lines...) Loading... | |
52 ['skia_os == "android"', { | 52 ['skia_os == "android"', { |
53 'dependencies': [ | 53 'dependencies': [ |
54 'android_system.gyp:SampleApp_APK', | 54 'android_system.gyp:SampleApp_APK', |
55 ], | 55 ], |
56 'conditions': [ | 56 'conditions': [ |
57 [ 'skia_gpu == 1', { | 57 [ 'skia_gpu == 1', { |
58 'dependencies': [ | 58 'dependencies': [ |
59 'android_system.gyp:VisualBench_APK', | 59 'android_system.gyp:VisualBench_APK', |
60 ], | 60 ], |
61 }], | 61 }], |
62 [ 'skia_vulkan == 1', { | |
63 'dependencies': [ | |
64 'android_system.gyp:VulkanViewer_APK', | |
65 ], | |
66 }], | |
62 ], | 67 ], |
63 }], | 68 }], |
64 ['skia_os == "ios"', { | 69 ['skia_os == "ios"', { |
65 'dependencies!': [ | 70 'dependencies!': [ |
66 'example.gyp:HelloWorld', | 71 'example.gyp:HelloWorld', |
67 'SampleApp.gyp:SampleApp', | 72 'SampleApp.gyp:SampleApp', |
68 'visualbench.gyp:visualbench', | 73 'visualbench.gyp:visualbench', |
69 ], | 74 ], |
70 'dependencies': ['iOSShell.gyp:iOSShell' ], | 75 'dependencies': ['iOSShell.gyp:iOSShell' ], |
71 }], | 76 }], |
72 ['skia_os == "mac" or skia_os == "linux"', { | 77 ['skia_os == "mac" or skia_os == "linux"', { |
73 'dependencies': [ | 78 'dependencies': [ |
74 'nanomsg.gyp:*' , | 79 'nanomsg.gyp:*' , |
75 'skiaserve.gyp:skiaserve', | 80 'skiaserve.gyp:skiaserve', |
76 ], | 81 ], |
77 }], | 82 }], |
78 [ 'skia_vulkan == 0 or skia_os != "win"', { | 83 [ 'skia_vulkan == 0', { |
djsollen
2016/04/20 17:46:26
do we still need to guard against including this o
jvanverth1
2016/04/20 17:56:26
Yes, we don't have a Linux version yet and Mac nev
| |
79 'dependencies!': [ | 84 'dependencies!': [ |
80 'vulkanviewer.gyp:vulkanviewer', | 85 'vulkanviewer.gyp:vulkanviewer', |
81 ], | 86 ], |
82 }], | 87 }], |
83 [ 'skia_skip_gui', | 88 [ 'skia_skip_gui', |
84 { | 89 { |
85 'dependencies!': [ | 90 'dependencies!': [ |
86 'example.gyp:HelloWorld', | 91 'example.gyp:HelloWorld', |
87 'SampleApp.gyp:SampleApp', | 92 'SampleApp.gyp:SampleApp', |
88 'visualbench.gyp:visualbench', | 93 'visualbench.gyp:visualbench', |
89 ] | 94 ] |
90 } | 95 } |
91 ], | 96 ], |
92 ], | 97 ], |
93 }, | 98 }, |
94 ], | 99 ], |
95 } | 100 } |
OLD | NEW |