Chromium Code Reviews| 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 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 ['exclude', '_posix(_unittest)?\\.(h|cc)$'], | 46 ['exclude', '_posix(_unittest)?\\.(h|cc)$'], |
| 47 ['exclude', '(^|/)posix/'], | 47 ['exclude', '(^|/)posix/'], |
| 48 ], | 48 ], |
| 49 }], | 49 }], |
| 50 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { | 50 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { |
| 51 'sources/': [ | 51 'sources/': [ |
| 52 ['exclude', '_chromeos(_unittest)?\\.(h|cc)$'], | 52 ['exclude', '_chromeos(_unittest)?\\.(h|cc)$'], |
| 53 ['exclude', '(^|/)chromeos/'], | 53 ['exclude', '(^|/)chromeos/'], |
| 54 ], | 54 ], |
| 55 }], | 55 }], |
| 56 ['chromecast==0', { | |
| 57 'sources/': [ | |
| 58 ['exclude', '_(cast|chromecast)(_unittest)?\\.(h|cc)$'], | |
|
jam
2014/04/24 15:38:16
since after the last meeting we're going to try to
| |
| 59 ], | |
| 60 }], | |
| 56 ['>(nacl_untrusted_build)==0', { | 61 ['>(nacl_untrusted_build)==0', { |
| 57 'sources/': [ | 62 'sources/': [ |
| 58 ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], | 63 ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], |
| 59 ], | 64 ], |
| 60 }], | 65 }], |
| 61 ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build) ==1', { | 66 ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build) ==1', { |
| 62 'sources/': [ | 67 'sources/': [ |
| 63 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], | 68 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], |
| 64 ], | 69 ], |
| 65 }], | 70 }], |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 ['<(ozone_platform_dri)==0 or >(nacl_untrusted_build)==1', { | 114 ['<(ozone_platform_dri)==0 or >(nacl_untrusted_build)==1', { |
| 110 'sources/': [ ['exclude', '_dri(_browsertest|_unittest)?\\.(h|cc)$'], | 115 'sources/': [ ['exclude', '_dri(_browsertest|_unittest)?\\.(h|cc)$'], |
| 111 ['exclude', '(^|/)dri/'], | 116 ['exclude', '(^|/)dri/'], |
| 112 ] | 117 ] |
| 113 }], | 118 }], |
| 114 ['<(use_pango)==0', { | 119 ['<(use_pango)==0', { |
| 115 'sources/': [ ['exclude', '(^|_)pango(_util|_browsertest|_unittest)?\\.(h| cc)$'], ], | 120 'sources/': [ ['exclude', '(^|_)pango(_util|_browsertest|_unittest)?\\.(h| cc)$'], ], |
| 116 }], | 121 }], |
| 117 ] | 122 ] |
| 118 } | 123 } |
| OLD | NEW |