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

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

Issue 1583263002: Experimental CompressibleString UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)',
haraken 2016/01/15 12:46:21 What is this change for?
hajimehoshi 2016/01/18 09:42:27 Done.
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',
68 ], 69 ],
69 'sources': [ 70 'sources': [
70 '<@(wtf_files)', 71 '<@(wtf_files)',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 ['exclude', 'CF\\.cpp$'], 141 ['exclude', 'CF\\.cpp$'],
141 ['exclude', 'Mac\\.mm$'], 142 ['exclude', 'Mac\\.mm$'],
142 # mac is the only OS that uses WebKit's copy of TCMalloc. 143 # mac is the only OS that uses WebKit's copy of TCMalloc.
143 ['exclude', 'TC.*\\.(cpp|h)$'], 144 ['exclude', 'TC.*\\.(cpp|h)$'],
144 ], 145 ],
145 }], 146 }],
146 ], 147 ],
147 }, 148 },
148 ] 149 ]
149 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698