| OLD | NEW |
| 1 # GYP file to build unit tests. | 1 # GYP file to build unit tests. |
| 2 { | 2 { |
| 3 'includes': [ | 3 'includes': [ |
| 4 'apptype_console.gypi', | 4 'apptype_console.gypi', |
| 5 'common.gypi', | 5 'common.gypi', |
| 6 ], | 6 ], |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'pixman_test', | 9 'target_name': 'pixman_test', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 '../../../pixman/pixman/pixman.h', | 118 '../../../pixman/pixman/pixman.h', |
| 119 ], | 119 ], |
| 120 'dependencies': [ | 120 'dependencies': [ |
| 121 'skia_lib.gyp:skia_lib', | 121 'skia_lib.gyp:skia_lib', |
| 122 'experimental.gyp:experimental', | 122 'experimental.gyp:experimental', |
| 123 'pdf.gyp:pdf', | 123 'pdf.gyp:pdf', |
| 124 'views.gyp:views', | 124 'views.gyp:views', |
| 125 'xml.gyp:xml', | 125 'xml.gyp:xml', |
| 126 ], | 126 ], |
| 127 'conditions': [ | 127 'conditions': [ |
| 128 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 128 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 129 }], | 129 }], |
| 130 [ 'skia_os == "win"', { | 130 [ 'skia_os == "win"', { |
| 131 }], | 131 }], |
| 132 [ 'skia_os == "mac"', { | 132 [ 'skia_os == "mac"', { |
| 133 'sources': [ | 133 'sources': [ |
| 134 | 134 |
| 135 # Mac files | 135 # Mac files |
| 136 '../src/views/mac/SkEventNotifier.h', | 136 '../src/views/mac/SkEventNotifier.h', |
| 137 '../src/views/mac/SkEventNotifier.mm', | 137 '../src/views/mac/SkEventNotifier.mm', |
| 138 '../src/views/mac/skia_mac.mm', | 138 '../src/views/mac/skia_mac.mm', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 166 }, | 166 }, |
| 167 }, | 167 }, |
| 168 ], | 168 ], |
| 169 } | 169 } |
| 170 | 170 |
| 171 # Local Variables: | 171 # Local Variables: |
| 172 # tab-width:2 | 172 # tab-width:2 |
| 173 # indent-tabs-mode:nil | 173 # indent-tabs-mode:nil |
| 174 # End: | 174 # End: |
| 175 # vim: set expandtab tabstop=2 shiftwidth=2: | 175 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |