| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 '-lGL', | 120 '-lGL', |
| 121 '-lGLU', | 121 '-lGLU', |
| 122 '-lX11', | 122 '-lX11', |
| 123 ], | 123 ], |
| 124 }, | 124 }, |
| 125 },{ | 125 },{ |
| 126 'sources!': [ | 126 'sources!': [ |
| 127 '../src/views/unix/SkOSWindow_Unix.cpp', | 127 '../src/views/unix/SkOSWindow_Unix.cpp', |
| 128 '../src/views/unix/keysym2ucs.c', | 128 '../src/views/unix/keysym2ucs.c', |
| 129 '../src/views/unix/skia_unix.cpp', | 129 '../src/views/unix/skia_unix.cpp', |
| 130 '../src/gpu/gl/glx/GrNativeDisplay_glx.h', |
| 131 '../src/gpu/gl/glx/GrNativeDisplay_glx.cpp', |
| 130 ], | 132 ], |
| 131 }], | 133 }], |
| 132 [ 'skia_os == "win"', { | 134 [ 'skia_os == "win"', { |
| 133 },{ | 135 },{ |
| 134 'sources!': [ | 136 'sources!': [ |
| 135 '../src/views/win/SkOSWindow_win.cpp', | 137 '../src/views/win/SkOSWindow_win.cpp', |
| 136 '../src/views/win/skia_win.cpp', | 138 '../src/views/win/skia_win.cpp', |
| 137 ], | 139 ], |
| 138 }], | 140 }], |
| 139 [ 'skia_gpu == 1', { | 141 [ 'skia_gpu == 1', { |
| 140 'include_dirs': [ | 142 'include_dirs': [ |
| 141 '../include/gpu', | 143 '../include/gpu', |
| 142 ], | 144 ], |
| 143 }], | 145 }], |
| 144 ], | 146 ], |
| 145 'direct_dependent_settings': { | 147 'direct_dependent_settings': { |
| 146 'include_dirs': [ | 148 'include_dirs': [ |
| 147 '../include/views', | 149 '../include/views', |
| 148 ], | 150 ], |
| 149 }, | 151 }, |
| 150 'export_dependent_settings': [ | 152 'export_dependent_settings': [ |
| 151 'xml.gyp:xml', | 153 'xml.gyp:xml', |
| 152 ], | 154 ], |
| 153 }, | 155 }, |
| 154 ], | 156 ], |
| 155 } | 157 } |
| OLD | NEW |