| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build performance testbench. | 5 # GYP file to build performance testbench. |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
| 10 ], | 10 ], |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ['skia_os != "linux"', { | 72 ['skia_os != "linux"', { |
| 73 'sources/': [ | 73 'sources/': [ |
| 74 ['exclude', '_unix.(h|cpp)$'], | 74 ['exclude', '_unix.(h|cpp)$'], |
| 75 ['exclude', 'keysym2ucs.c'], | 75 ['exclude', 'keysym2ucs.c'], |
| 76 ], | 76 ], |
| 77 }], | 77 }], |
| 78 ['skia_os != "win"', { | 78 ['skia_os != "win"', { |
| 79 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 79 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| 80 ], | 80 ], |
| 81 }], | 81 }], |
| 82 ['skia_vulkan == 0', { | |
| 83 'sources/': [ ['exclude', 'Vulkan'] | |
| 84 ], | |
| 85 }], | |
| 86 ], | 82 ], |
| 87 }, | 83 }, |
| 88 ], | 84 ], |
| 89 } | 85 } |
| OLD | NEW |