Chromium Code Reviews| Index: build/nocompile.gypi |
| diff --git a/build/nocompile.gypi b/build/nocompile.gypi |
| index f9021ae3797c51d667d61a7532cb5410221c8f4d..8c0f288b5a55f70fcfb38013e509b0b0b4b549c4 100644 |
| --- a/build/nocompile.gypi |
| +++ b/build/nocompile.gypi |
| @@ -60,7 +60,7 @@ |
| # TODO(awong): Disabled until http://crbug.com/105388 is resolved. |
| 'sources/': [['exclude', '\\.nc$']], |
| 'conditions': [ |
| - [ 'OS=="linux" and clang==0', { |
| + [ 'OS!="win" and clang==1', { |
| 'rules': [ |
| { |
| 'variables': { |
| @@ -90,7 +90,7 @@ |
| ], |
| }, { |
| 'sources/': [['exclude', '\\.nc$']] |
|
danakj
2014/11/03 16:05:13
btw isn't this redundant with L61?
dcheng
2014/11/03 18:58:18
Think of line 61 as a quick way to ifdef out this
danakj
2014/11/03 19:00:14
Oh I see, that's why the TODO is there.
|
| - }], # 'OS=="linux" and clang=="0"' |
| + }], # 'OS!="win" and clang=="1"' |
| ], |
| } |