Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/WebKit/Source/wtf/wtf.gyp

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698