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

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

Issue 26763006: Move the generation and inclusion of RuntimeEnabledFeatures to blink_platform.dll since many pieces… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 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 # 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 14 matching lines...) Expand all
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 # 29 #
30 30
31 { 31 {
32 'includes': [ 32 'includes': [
33 '../build/win/precompile.gypi', 33 '../build/win/precompile.gypi',
34 '../build/features.gypi', 34 '../build/features.gypi',
35 '../build/scripts.gypi',
Stephen Chennney 2013/10/16 21:26:13 This will conflict too.
35 '../modules/modules.gypi', 36 '../modules/modules.gypi',
36 '../bindings/bindings.gypi', 37 '../bindings/bindings.gypi',
37 'core.gypi', 38 'core.gypi',
38 ], 39 ],
39 40
40 'variables': { 41 'variables': {
41 'enable_wexit_time_destructors': 1, 42 'enable_wexit_time_destructors': 1,
42 43
43 'webcore_include_dirs': [ 44 'webcore_include_dirs': [
44 '../..', 45 '../..',
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'dependencies': [ 212 'dependencies': [
212 'webcore_prerequisites', 213 'webcore_prerequisites',
213 '../bindings/derived_sources.gyp:bindings_derived_sources', 214 '../bindings/derived_sources.gyp:bindings_derived_sources',
214 'core_derived_sources.gyp:make_derived_sources', 215 'core_derived_sources.gyp:make_derived_sources',
215 'inspector_overlay_page', 216 'inspector_overlay_page',
216 'inspector_protocol_sources', 217 'inspector_protocol_sources',
217 'inspector_instrumentation_sources', 218 'inspector_instrumentation_sources',
218 'injected_canvas_script_source', 219 'injected_canvas_script_source',
219 'injected_script_source', 220 'injected_script_source',
220 'debugger_script_source', 221 'debugger_script_source',
222 '../platform/platform_derived_sources.gyp:make_derived_sources',
221 '../wtf/wtf.gyp:wtf', 223 '../wtf/wtf.gyp:wtf',
222 '<(DEPTH)/skia/skia.gyp:skia', 224 '<(DEPTH)/skia/skia.gyp:skia',
223 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg', 225 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg',
224 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 226 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
225 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', 227 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp',
226 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 228 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
227 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', 229 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt',
228 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 230 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
229 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', 231 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms',
230 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 232 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
1091 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', 1093 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h',
1092 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', 1094 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp',
1093 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', 1095 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h',
1094 ], 1096 ],
1095 'sources/': [ 1097 'sources/': [
1096 ['exclude', 'testing/js'], 1098 ['exclude', 'testing/js'],
1097 ], 1099 ],
1098 }, 1100 },
1099 ], # targets 1101 ], # targets
1100 } 1102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698