Chromium Code Reviews| 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 ], | 5 ], |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'tests', | 8 'target_name': 'tests', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'include_dirs' : [ | 10 'include_dirs' : [ |
| 11 '../src/core', | 11 '../src/core', |
| 12 '../src/effects', | 12 '../src/effects', |
| 13 '../src/lazy', | 13 '../src/lazy', |
| 14 '../src/pdf', | 14 '../src/pdf', |
| 15 '../src/pipe/utils', | 15 '../src/pipe/utils', |
| 16 '../src/utils', | 16 '../src/utils', |
| 17 '../tools/', | 17 '../tools/', |
| 18 '../tools/flags', | |
|
scroggo
2013/04/11 16:28:01
You can remove this and the compilation of SkCommm
| |
| 18 ], | 19 ], |
| 19 'sources': [ | 20 'sources': [ |
| 20 '../tests/AAClipTest.cpp', | 21 '../tests/AAClipTest.cpp', |
| 21 '../tests/AnnotationTest.cpp', | 22 '../tests/AnnotationTest.cpp', |
| 22 '../tests/AtomicTest.cpp', | 23 '../tests/AtomicTest.cpp', |
| 23 '../tests/BitmapCopyTest.cpp', | 24 '../tests/BitmapCopyTest.cpp', |
| 24 '../tests/BitmapFactoryTest.cpp', | 25 '../tests/BitmapFactoryTest.cpp', |
| 25 '../tests/BitmapGetColorTest.cpp', | 26 '../tests/BitmapGetColorTest.cpp', |
| 26 '../tests/BitmapHeapTest.cpp', | 27 '../tests/BitmapHeapTest.cpp', |
| 27 '../tests/BitmapTransformerTest.cpp', | 28 '../tests/BitmapTransformerTest.cpp', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 '../tests/ToUnicode.cpp', | 112 '../tests/ToUnicode.cpp', |
| 112 '../tests/UnicodeTest.cpp', | 113 '../tests/UnicodeTest.cpp', |
| 113 '../tests/UtilsTest.cpp', | 114 '../tests/UtilsTest.cpp', |
| 114 '../tests/WArrayTest.cpp', | 115 '../tests/WArrayTest.cpp', |
| 115 '../tests/WritePixelsTest.cpp', | 116 '../tests/WritePixelsTest.cpp', |
| 116 '../tests/Writer32Test.cpp', | 117 '../tests/Writer32Test.cpp', |
| 117 '../tests/XfermodeTest.cpp', | 118 '../tests/XfermodeTest.cpp', |
| 118 | 119 |
| 119 # Needed for PipeTest. | 120 # Needed for PipeTest. |
| 120 '../src/pipe/utils/SamplePipeControllers.cpp', | 121 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 122 | |
| 123 '../tools/flags/SkCommandLineFlags.cpp', | |
| 121 ], | 124 ], |
| 122 'dependencies': [ | 125 'dependencies': [ |
| 123 'skia_base_libs.gyp:skia_base_libs', | 126 'skia_base_libs.gyp:skia_base_libs', |
| 124 'effects.gyp:effects', | 127 'effects.gyp:effects', |
| 125 'experimental.gyp:experimental', | 128 'experimental.gyp:experimental', |
| 126 'images.gyp:images', | 129 'images.gyp:images', |
| 127 'pdf.gyp:pdf', | 130 'pdf.gyp:pdf', |
| 128 'tools.gyp:picture_utils', | 131 'tools.gyp:picture_utils', |
| 129 'utils.gyp:utils', | 132 'utils.gyp:utils', |
| 130 'sfnt.gyp:sfnt', | 133 'sfnt.gyp:sfnt', |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 147 ], | 150 ], |
| 148 }, | 151 }, |
| 149 ], | 152 ], |
| 150 } | 153 } |
| 151 | 154 |
| 152 # Local Variables: | 155 # Local Variables: |
| 153 # tab-width:2 | 156 # tab-width:2 |
| 154 # indent-tabs-mode:nil | 157 # indent-tabs-mode:nil |
| 155 # End: | 158 # End: |
| 156 # vim: set expandtab tabstop=2 shiftwidth=2: | 159 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |