| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'dependencies!': [ | 65 'dependencies!': [ |
| 66 'example.gyp:HelloWorld', | 66 'example.gyp:HelloWorld', |
| 67 'SampleApp.gyp:SampleApp', | 67 'SampleApp.gyp:SampleApp', |
| 68 'visualbench.gyp:visualbench', | 68 'visualbench.gyp:visualbench', |
| 69 ], | 69 ], |
| 70 'dependencies': ['iOSShell.gyp:iOSShell' ], | 70 'dependencies': ['iOSShell.gyp:iOSShell' ], |
| 71 }], | 71 }], |
| 72 ['skia_os == "mac" or skia_os == "linux"', { | 72 ['skia_os == "mac" or skia_os == "linux"', { |
| 73 'dependencies': [ | 73 'dependencies': [ |
| 74 'nanomsg.gyp:*' , | 74 'nanomsg.gyp:*' , |
| 75 ], |
| 76 }], |
| 77 ['skia_os in ["linux", "mac", "win"]', { |
| 78 'dependencies': [ |
| 75 'skiaserve.gyp:skiaserve', | 79 'skiaserve.gyp:skiaserve', |
| 76 ], | 80 ], |
| 77 }], | 81 }], |
| 78 [ 'skia_vulkan == 0 or skia_os != "win"', { | 82 [ 'skia_vulkan == 0 or skia_os != "win"', { |
| 79 'dependencies!': [ | 83 'dependencies!': [ |
| 80 'vulkanviewer.gyp:vulkanviewer', | 84 'vulkanviewer.gyp:vulkanviewer', |
| 81 ], | 85 ], |
| 82 }], | 86 }], |
| 83 [ 'skia_skip_gui', | 87 [ 'skia_skip_gui', |
| 84 { | 88 { |
| 85 'dependencies!': [ | 89 'dependencies!': [ |
| 86 'example.gyp:HelloWorld', | 90 'example.gyp:HelloWorld', |
| 87 'SampleApp.gyp:SampleApp', | 91 'SampleApp.gyp:SampleApp', |
| 88 'visualbench.gyp:visualbench', | 92 'visualbench.gyp:visualbench', |
| 89 ] | 93 ] |
| 90 } | 94 } |
| 91 ], | 95 ], |
| 92 ], | 96 ], |
| 93 }, | 97 }, |
| 94 ], | 98 ], |
| 95 } | 99 } |
| OLD | NEW |