| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 '../src/views/mac/SkEventNotifier.h', | 91 '../src/views/mac/SkEventNotifier.h', |
| 92 '../src/views/mac/SkEventNotifier.mm', | 92 '../src/views/mac/SkEventNotifier.mm', |
| 93 '../src/views/mac/SkTextFieldCell.h', | 93 '../src/views/mac/SkTextFieldCell.h', |
| 94 '../src/views/mac/SkTextFieldCell.m', | 94 '../src/views/mac/SkTextFieldCell.m', |
| 95 '../src/views/mac/SkNSView.h', | 95 '../src/views/mac/SkNSView.h', |
| 96 '../src/views/mac/SkNSView.mm', | 96 '../src/views/mac/SkNSView.mm', |
| 97 '../src/views/mac/SkOSWindow_Mac.mm', | 97 '../src/views/mac/SkOSWindow_Mac.mm', |
| 98 '../src/views/mac/skia_mac.mm', | 98 '../src/views/mac/skia_mac.mm', |
| 99 ], | 99 ], |
| 100 }], | 100 }], |
| 101 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"] and
skia_use_sdl == 0', { | 101 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"] and skia_use_sd
l == 0', { |
| 102 'link_settings': { | 102 'link_settings': { |
| 103 'libraries': [ | 103 'libraries': [ |
| 104 '-lGL', | 104 '-lGL', |
| 105 '-lGLU', | 105 '-lGLU', |
| 106 '-lX11', | 106 '-lX11', |
| 107 ], | 107 ], |
| 108 }, | 108 }, |
| 109 },{ | 109 },{ |
| 110 'sources!': [ | 110 'sources!': [ |
| 111 '../src/views/unix/SkOSWindow_Unix.cpp', | 111 '../src/views/unix/SkOSWindow_Unix.cpp', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'include_dirs': [ | 181 'include_dirs': [ |
| 182 '../include/views', | 182 '../include/views', |
| 183 ], | 183 ], |
| 184 }, | 184 }, |
| 185 'export_dependent_settings': [ | 185 'export_dependent_settings': [ |
| 186 'xml.gyp:xml', | 186 'xml.gyp:xml', |
| 187 ], | 187 ], |
| 188 }, | 188 }, |
| 189 ], | 189 ], |
| 190 } | 190 } |
| OLD | NEW |