| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 ], | 51 ], |
| 52 }], | 52 }], |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 }, | 55 }, |
| 56 { | 56 { |
| 57 'target_name': 'wtf', | 57 'target_name': 'wtf', |
| 58 'type': '<(component)', | 58 'type': '<(component)', |
| 59 'include_dirs': [ | 59 'include_dirs': [ |
| 60 '..', | 60 '..', |
| 61 '<(DEPTH)', |
| 61 ], | 62 ], |
| 62 'dependencies': [ | 63 'dependencies': [ |
| 63 'wtf_config', | 64 'wtf_config', |
| 64 '../config.gyp:config', | 65 '../config.gyp:config', |
| 65 '<(DEPTH)/base/base.gyp:base', | 66 '<(DEPTH)/base/base.gyp:base', |
| 66 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 67 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 67 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 68 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 69 '<(DEPTH)/third_party/zlib/google/zip.gyp:compression_utils', |
| 68 ], | 70 ], |
| 69 'sources': [ | 71 'sources': [ |
| 70 '<@(wtf_files)', | 72 '<@(wtf_files)', |
| 71 ], | 73 ], |
| 72 'defines': [ | 74 'defines': [ |
| 73 'WTF_IMPLEMENTATION=1', | 75 'WTF_IMPLEMENTATION=1', |
| 74 ], | 76 ], |
| 75 'direct_dependent_settings': { | 77 'direct_dependent_settings': { |
| 76 'include_dirs': [ | 78 'include_dirs': [ |
| 77 '..', | 79 '..', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 ['exclude', 'CF\\.cpp$'], | 142 ['exclude', 'CF\\.cpp$'], |
| 141 ['exclude', 'Mac\\.mm$'], | 143 ['exclude', 'Mac\\.mm$'], |
| 142 # mac is the only OS that uses WebKit's copy of TCMalloc. | 144 # mac is the only OS that uses WebKit's copy of TCMalloc. |
| 143 ['exclude', 'TC.*\\.(cpp|h)$'], | 145 ['exclude', 'TC.*\\.(cpp|h)$'], |
| 144 ], | 146 ], |
| 145 }], | 147 }], |
| 146 ], | 148 ], |
| 147 }, | 149 }, |
| 148 ] | 150 ] |
| 149 } | 151 } |
| OLD | NEW |