| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 '../../../pixman/pixman/pixman-combine32.h', | 111 '../../../pixman/pixman/pixman-combine32.h', |
| 112 '../../../pixman/pixman/pixman-compiler.h', | 112 '../../../pixman/pixman/pixman-compiler.h', |
| 113 '../../../pixman/pixman/pixman-edge-imp.h', | 113 '../../../pixman/pixman/pixman-edge-imp.h', |
| 114 '../../../pixman/pixman/pixman-inlines.h', | 114 '../../../pixman/pixman/pixman-inlines.h', |
| 115 '../../../pixman/pixman/pixman-mips-dspr2-asm.h', | 115 '../../../pixman/pixman/pixman-mips-dspr2-asm.h', |
| 116 '../../../pixman/pixman/pixman-mips-dspr2.h', | 116 '../../../pixman/pixman/pixman-mips-dspr2.h', |
| 117 '../../../pixman/pixman/pixman-private.h', | 117 '../../../pixman/pixman/pixman-private.h', |
| 118 '../../../pixman/pixman/pixman.h', | 118 '../../../pixman/pixman/pixman.h', |
| 119 ], | 119 ], |
| 120 'dependencies': [ | 120 'dependencies': [ |
| 121 'skia_base_libs.gyp:skia_base_libs', | 121 'skia_lib.gyp:skia_lib', |
| 122 'effects.gyp:effects', | |
| 123 'experimental.gyp:experimental', | 122 'experimental.gyp:experimental', |
| 124 'images.gyp:images', | |
| 125 'pdf.gyp:pdf', | 123 'pdf.gyp:pdf', |
| 126 'views.gyp:views', | 124 'views.gyp:views', |
| 127 'xml.gyp:xml', | 125 'xml.gyp:xml', |
| 128 ], | 126 ], |
| 129 'conditions': [ | 127 'conditions': [ |
| 130 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 128 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
| 131 }], | 129 }], |
| 132 [ 'skia_os == "win"', { | 130 [ 'skia_os == "win"', { |
| 133 }], | 131 }], |
| 134 [ 'skia_os == "mac"', { | 132 [ 'skia_os == "mac"', { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 }, | 166 }, |
| 169 }, | 167 }, |
| 170 ], | 168 ], |
| 171 } | 169 } |
| 172 | 170 |
| 173 # Local Variables: | 171 # Local Variables: |
| 174 # tab-width:2 | 172 # tab-width:2 |
| 175 # indent-tabs-mode:nil | 173 # indent-tabs-mode:nil |
| 176 # End: | 174 # End: |
| 177 # vim: set expandtab tabstop=2 shiftwidth=2: | 175 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |