OLD | NEW |
1 # Copyright (C) 2012 Google Inc. All rights reserved. | 1 # Copyright (C) 2012 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'defines': [ | 50 'defines': [ |
51 # Import features_defines from features.gypi | 51 # Import features_defines from features.gypi |
52 '<@(feature_defines)', | 52 '<@(feature_defines)', |
53 ], | 53 ], |
54 'conditions': [ | 54 'conditions': [ |
55 ['OS=="win"', { | 55 ['OS=="win"', { |
56 'defines': [ | 56 'defines': [ |
57 '__STD_C', | 57 '__STD_C', |
58 '_CRT_SECURE_NO_DEPRECATE', | 58 '_CRT_SECURE_NO_DEPRECATE', |
59 '_SCL_SECURE_NO_DEPRECATE', | 59 '_SCL_SECURE_NO_DEPRECATE', |
60 'CRASH=__debugbreak', | |
61 ], | 60 ], |
62 }], | 61 }], |
63 ], | 62 ], |
64 }, | 63 }, |
65 }, | 64 }, |
66 { | 65 { |
67 'target_name': 'wtf', | 66 'target_name': 'wtf', |
68 'type': '<(component)', | 67 'type': '<(component)', |
69 'include_dirs': [ | 68 'include_dirs': [ |
70 '..', | 69 '..', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 ['exclude', 'CF\\.cpp$'], | 147 ['exclude', 'CF\\.cpp$'], |
149 ['exclude', 'Mac\\.mm$'], | 148 ['exclude', 'Mac\\.mm$'], |
150 # mac is the only OS that uses WebKit's copy of TCMalloc. | 149 # mac is the only OS that uses WebKit's copy of TCMalloc. |
151 ['exclude', 'TC.*\\.(cpp|h)$'], | 150 ['exclude', 'TC.*\\.(cpp|h)$'], |
152 ], | 151 ], |
153 }], | 152 }], |
154 ], | 153 ], |
155 }, | 154 }, |
156 ] | 155 ] |
157 } | 156 } |
OLD | NEW |