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

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

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added --target-component instead of --genearte-partial Created 6 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 | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 ['component=="shared_library"', { 212 ['component=="shared_library"', {
213 'type': 'none', 213 'type': 'none',
214 }, { 214 }, {
215 'type': 'static_library', 215 'type': 'static_library',
216 'dependencies': [ 216 'dependencies': [
217 '../config.gyp:config', 217 '../config.gyp:config',
218 '../core/core.gyp:webcore_testing', 218 '../core/core.gyp:webcore_testing',
219 '../modules/modules.gyp:modules_testing', 219 '../modules/modules.gyp:modules_testing',
220 '../wtf/wtf.gyp:wtf', 220 '../wtf/wtf.gyp:wtf',
221 '<(DEPTH)/skia/skia.gyp:skia', 221 '<(DEPTH)/skia/skia.gyp:skia',
222 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
222 ], 223 ],
223 'include_dirs': [ 224 'include_dirs': [
224 '../../', 225 '../../',
226 '<(SHARED_INTERMEDIATE_DIR)/blink', # gen/blink
225 ], 227 ],
226 'sources': [ 228 'sources': [
227 'WebTestingSupport.cpp', 229 'WebTestingSupport.cpp',
228 ], 230 ],
229 }], 231 }],
230 ], 232 ],
231 }, 233 },
232 ], # targets 234 ], # targets
233 'conditions': [ 235 'conditions': [
234 ['gcc_version>=46', { 236 ['gcc_version>=46', {
(...skipping 11 matching lines...) Expand all
246 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa' ], 248 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa' ],
247 'copies': [{ 249 'copies': [{
248 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten ts/MacOS/', 250 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten ts/MacOS/',
249 'files': ['<(PRODUCT_DIR)/osmesa.so'], 251 'files': ['<(PRODUCT_DIR)/osmesa.so'],
250 }], 252 }],
251 }, 253 },
252 ], 254 ],
253 }], 255 }],
254 ], # conditions 256 ], # conditions
255 } 257 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698