| 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 # Views is the Skia windowing toolkit. | 5 # Views is the Skia windowing toolkit. |
| 6 # It provides: | 6 # It provides: |
| 7 # * A portable means of creating native windows. | 7 # * A portable means of creating native windows. |
| 8 # * Events. | 8 # * Events. |
| 9 # * Basic widgets and controls. | 9 # * Basic widgets and controls. |
| 10 | 10 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'sources!': [ | 118 'sources!': [ |
| 119 '../src/views/win/SkOSWindow_win.cpp', | 119 '../src/views/win/SkOSWindow_win.cpp', |
| 120 '../src/views/win/skia_win.cpp', | 120 '../src/views/win/skia_win.cpp', |
| 121 ], | 121 ], |
| 122 }], | 122 }], |
| 123 [ 'skia_gpu == 1', { | 123 [ 'skia_gpu == 1', { |
| 124 'include_dirs': [ | 124 'include_dirs': [ |
| 125 '../include/gpu', | 125 '../include/gpu', |
| 126 ], | 126 ], |
| 127 }], | 127 }], |
| 128 [ 'skia_angle', { |
| 129 'dependencies': [ |
| 130 'angle.gyp:*', |
| 131 ], |
| 132 }], |
| 128 [ 'skia_use_sdl == 1', { | 133 [ 'skia_use_sdl == 1', { |
| 129 'defines': [ | 134 'defines': [ |
| 130 'SK_USE_SDL', | 135 'SK_USE_SDL', |
| 131 ], | 136 ], |
| 132 'dependencies': [ | 137 'dependencies': [ |
| 133 'sdl.gyp:sdl', | 138 'sdl.gyp:sdl', |
| 134 ], | 139 ], |
| 135 'sources!': [ | 140 'sources!': [ |
| 136 # linux sources | 141 # linux sources |
| 137 '../src/views/unix/SkOSWindow_Unix.cpp', | 142 '../src/views/unix/SkOSWindow_Unix.cpp', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 'include_dirs': [ | 181 'include_dirs': [ |
| 177 '../include/views', | 182 '../include/views', |
| 178 ], | 183 ], |
| 179 }, | 184 }, |
| 180 'export_dependent_settings': [ | 185 'export_dependent_settings': [ |
| 181 'xml.gyp:xml', | 186 'xml.gyp:xml', |
| 182 ], | 187 ], |
| 183 }, | 188 }, |
| 184 ], | 189 ], |
| 185 } | 190 } |
| OLD | NEW |