OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This gypi file handles the removal of platform-specific files from the | 5 # This gypi file handles the removal of platform-specific files from the |
6 # Skia build. | 6 # Skia build. |
7 { | 7 { |
8 'include_dirs': [ | 8 'include_dirs': [ |
9 '..', | 9 '..', |
10 'config', | 10 'config', |
(...skipping 11 matching lines...) Expand all Loading... |
22 ], | 22 ], |
23 }], | 23 }], |
24 [ 'OS != "mac"', { | 24 [ 'OS != "mac"', { |
25 'sources/': [ | 25 'sources/': [ |
26 ['exclude', '_mac\\.(cc|cpp|mm?)$'], | 26 ['exclude', '_mac\\.(cc|cpp|mm?)$'], |
27 ], | 27 ], |
28 }], | 28 }], |
29 [ 'OS != "win"', { | 29 [ 'OS != "win"', { |
30 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], | 30 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], |
31 }], | 31 }], |
32 [ 'use_glib == 0', { | 32 [ 'desktop_linux == 0 and chromeos == 0', { |
33 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ], | 33 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ], |
34 }], | 34 }], |
35 ], | 35 ], |
36 | 36 |
37 'direct_dependent_settings': { | 37 'direct_dependent_settings': { |
38 'include_dirs': [ | 38 'include_dirs': [ |
39 '..', | 39 '..', |
40 'config', | 40 'config', |
41 ], | 41 ], |
42 }, | 42 }, |
43 | 43 |
44 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], | 44 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], |
45 } | 45 } |
OLD | NEW |