| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 ], | 60 ], |
| 61 }], | 61 }], |
| 62 ], | 62 ], |
| 63 }, | 63 }, |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 'target_name': 'wtf', | 66 'target_name': 'wtf', |
| 67 'type': '<(component)', | 67 'type': '<(component)', |
| 68 'include_dirs': [ | 68 'include_dirs': [ |
| 69 '..', | 69 '..', |
| 70 '<(DEPTH)', |
| 70 ], | 71 ], |
| 71 'dependencies': [ | 72 'dependencies': [ |
| 72 'wtf_config', | 73 'wtf_config', |
| 73 '../config.gyp:config', | 74 '../config.gyp:config', |
| 75 '<(DEPTH)/components/components.gyp:compression', |
| 74 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 76 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 75 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 77 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 76 ], | 78 ], |
| 77 'sources': [ | 79 'sources': [ |
| 78 '<@(wtf_files)', | 80 '<@(wtf_files)', |
| 79 ], | 81 ], |
| 80 'defines': [ | 82 'defines': [ |
| 81 'WTF_IMPLEMENTATION=1', | 83 'WTF_IMPLEMENTATION=1', |
| 82 ], | 84 ], |
| 83 'direct_dependent_settings': { | 85 'direct_dependent_settings': { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 ['exclude', 'CF\\.cpp$'], | 149 ['exclude', 'CF\\.cpp$'], |
| 148 ['exclude', 'Mac\\.mm$'], | 150 ['exclude', 'Mac\\.mm$'], |
| 149 # mac is the only OS that uses WebKit's copy of TCMalloc. | 151 # mac is the only OS that uses WebKit's copy of TCMalloc. |
| 150 ['exclude', 'TC.*\\.(cpp|h)$'], | 152 ['exclude', 'TC.*\\.(cpp|h)$'], |
| 151 ], | 153 ], |
| 152 }], | 154 }], |
| 153 ], | 155 ], |
| 154 }, | 156 }, |
| 155 ] | 157 ] |
| 156 } | 158 } |
| OLD | NEW |