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

Side by Side Diff: Source/core/core.gyp

Issue 720783002: Optionally compress V8 code cache data with snappy. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg', 183 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg',
184 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 184 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
185 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', 185 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp',
186 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 186 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
187 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', 187 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt',
188 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 188 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
189 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', 189 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms',
190 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 190 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
191 '<(DEPTH)/url/url.gyp:url_lib', 191 '<(DEPTH)/url/url.gyp:url_lib',
192 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 192 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
193 '<(DEPTH)/third_party/snappy/snappy.gyp:snappy',
193 ], 194 ],
194 'include_dirs': [ 195 'include_dirs': [
195 '<@(webcore_include_dirs)', 196 '<@(webcore_include_dirs)',
196 ], 197 ],
197 'sources': [ 198 'sources': [
198 # FIXME: should be bindings_core_v8_files http://crbug.com/358074 199 # FIXME: should be bindings_core_v8_files http://crbug.com/358074
199 '<@(bindings_core_v8_files)', 200 '<@(bindings_core_v8_files)',
200 # These files include all the .cpp files generated from the .idl files 201 # These files include all the .cpp files generated from the .idl files
201 # in webcore_files. 202 # in webcore_files.
202 '<@(bindings_core_v8_generated_aggregate_files)', 203 '<@(bindings_core_v8_generated_aggregate_files)',
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', 786 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h',
786 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp', 787 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp',
787 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h', 788 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h',
788 ], 789 ],
789 'sources/': [ 790 'sources/': [
790 ['exclude', 'testing/js'], 791 ['exclude', 'testing/js'],
791 ], 792 ],
792 }, 793 },
793 ], # targets 794 ], # targets
794 } 795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698