| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ['skia_os != "linux"', { | 94 ['skia_os != "linux"', { |
| 95 'sources/': [ | 95 'sources/': [ |
| 96 ['exclude', '_unix.(h|cpp)$'], | 96 ['exclude', '_unix.(h|cpp)$'], |
| 97 ['exclude', 'keysym2ucs.c'], | 97 ['exclude', 'keysym2ucs.c'], |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 ['skia_os != "win"', { | 100 ['skia_os != "win"', { |
| 101 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 101 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ['skia_os != "mac"', { |
| 105 'sources/': [ ['exclude', '_mac.(h|cpp)$'], |
| 106 ], |
| 107 }], |
| 104 ['skia_vulkan == 0', { | 108 ['skia_vulkan == 0', { |
| 105 'sources/': [ ['exclude', 'Vulkan'] | 109 'sources/': [ ['exclude', 'Vulkan'] |
| 106 ], | 110 ], |
| 107 }], | 111 }], |
| 108 ], | 112 ], |
| 109 }, | 113 }, |
| 110 ], | 114 ], |
| 111 } | 115 } |
| OLD | NEW |