| OLD | NEW |
| 1 # Views is the Skia windowing toolkit. | 1 # Views is the Skia windowing toolkit. |
| 2 # It provides: | 2 # It provides: |
| 3 # * A portable means of creating native windows. | 3 # * A portable means of creating native windows. |
| 4 # * Events. | 4 # * Events. |
| 5 # * Basic widgets and controls. | 5 # * Basic widgets and controls. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'views', | 10 'target_name': 'views', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', | 91 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', |
| 92 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 92 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 93 ], | 93 ], |
| 94 }, | 94 }, |
| 95 },{ | 95 },{ |
| 96 'sources!': [ | 96 'sources!': [ |
| 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"]', { | 101 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 }, | 144 }, |
| 145 }, | 145 }, |
| 146 ], | 146 ], |
| 147 } | 147 } |
| 148 | 148 |
| 149 # Local Variables: | 149 # Local Variables: |
| 150 # tab-width:2 | 150 # tab-width:2 |
| 151 # indent-tabs-mode:nil | 151 # indent-tabs-mode:nil |
| 152 # End: | 152 # End: |
| 153 # vim: set expandtab tabstop=2 shiftwidth=2: | 153 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |