| 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': 'pathops_unittest', | 8 'target_name': 'pathops_unittest', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'suppress_wildcard': '1', | 10 'suppress_wildcard': '1', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'conditions': [ | 34 'conditions': [ |
| 35 [ 'skia_gpu == 1', { | 35 [ 'skia_gpu == 1', { |
| 36 'include_dirs': [ | 36 'include_dirs': [ |
| 37 '../src/gpu', | 37 '../src/gpu', |
| 38 ], | 38 ], |
| 39 }], | 39 }], |
| 40 ], | 40 ], |
| 41 }, | 41 }, |
| 42 ], | 42 ], |
| 43 } | 43 } |
| 44 | |
| 45 # Local Variables: | |
| 46 # tab-width:2 | |
| 47 # indent-tabs-mode:nil | |
| 48 # End: | |
| 49 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |