OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 defines the patterns used for determining whether a | 5 # This gypi file defines the patterns used for determining whether a |
6 # file is excluded from the build on a given platform. It is | 6 # file is excluded from the build on a given platform. It is |
7 # included by common.gypi for chromium_code. | 7 # included by common.gypi for chromium_code. |
8 | 8 |
9 { | 9 { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 24 matching lines...) Expand all Loading... |
35 ['exclude', '(^|/)linuxish/'], | 35 ['exclude', '(^|/)linuxish/'], |
36 ], | 36 ], |
37 }], | 37 }], |
38 ['OS!="android"', { | 38 ['OS!="android"', { |
39 'sources/': [ | 39 'sources/': [ |
40 ['exclude', '_android(_unittest)?\\.cc$'], | 40 ['exclude', '_android(_unittest)?\\.cc$'], |
41 ['exclude', '(^|/)android/'], | 41 ['exclude', '(^|/)android/'], |
42 ], | 42 ], |
43 }], | 43 }], |
44 ['OS=="win"', { | 44 ['OS=="win"', { |
45 'sources/': [ ['exclude', '_posix(_unittest)?\\.(h|cc)$'] ], | 45 'sources/': [ |
| 46 ['exclude', '_posix(_unittest)?\\.(h|cc)$'], |
| 47 ['exclude', '(^|/)posix/'], |
| 48 ], |
| 49 |
46 }], | 50 }], |
47 ['chromeos!=1', { | 51 ['chromeos!=1', { |
48 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] | 52 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] |
49 }], | 53 }], |
50 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', { | 54 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', { |
51 'sources/': [ | 55 'sources/': [ |
52 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], | 56 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], |
53 ], | 57 ], |
54 }], | 58 }], |
55 | 59 |
(...skipping 25 matching lines...) Expand all Loading... |
81 ['use_aura==0 or OS!="win"', { | 85 ['use_aura==0 or OS!="win"', { |
82 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] | 86 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] |
83 }], | 87 }], |
84 ['use_ash==0', { | 88 ['use_ash==0', { |
85 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'], | 89 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'], |
86 ['exclude', '(^|/)ash/'], | 90 ['exclude', '(^|/)ash/'], |
87 ] | 91 ] |
88 }], | 92 }], |
89 ] | 93 ] |
90 } | 94 } |
OLD | NEW |