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

Side by Side Diff: Source/bindings/dart/gyp/dartium.gyp

Issue 104433004: Enable VM service inside Dartium Renderer processes (Closed) Base URL: svn://svn.chromium.org/multivm/branches/1650/blink
Patch Set: Created 7 years 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 'includes': [ 2 'includes': [
3 '../../../core/features.gypi', 3 '../../../core/features.gypi',
4 '../../../core/core.gypi', 4 '../../../core/core.gypi',
5 '../../../modules/modules.gypi', 5 '../../../modules/modules.gypi',
6 'overrides.gypi', 6 'overrides.gypi',
7 ], 7 ],
8 'variables': { 8 'variables': {
9 'dart_dir': '../../../../../../dart', 9 'dart_dir': '../../../../../../dart',
10 'dart_lib_dir': '<(dart_dir)/sdk/lib', 10 'dart_lib_dir': '<(dart_dir)/sdk/lib',
(...skipping 21 matching lines...) Expand all
32 '<(core_dir)/page/AbstractView.idl', 32 '<(core_dir)/page/AbstractView.idl',
33 33
34 # FIXME: I don't know why these are excluded, either. 34 # FIXME: I don't know why these are excluded, either.
35 # Someone (me?) should figure it out and add appropriate comments. 35 # Someone (me?) should figure it out and add appropriate comments.
36 '<(core_dir)/css/CSSUnknownRule.idl', 36 '<(core_dir)/css/CSSUnknownRule.idl',
37 ], 37 ],
38 }, 38 },
39 39
40 'targets': [ 40 'targets': [
41 { 41 {
42 'target_name': 'generate_vmservice_cpp_file',
43 'type': 'none',
44 'toolsets':['host'],
45 'includes': [
46 'resources_sources.gypi',
47 ],
48 'variables': {
49 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart',
50 },
51 'actions': [
52 {
53 'action_name': 'generate_vmservice_cpp',
54 'inputs': [
55 '<(dart_dir)/runtime/tools/create_resources.py',
56 '<@(_sources)',
57 ],
58 'outputs': [
59 '<(output_path)/vmservice_gen.cpp'
60 ],
61 'action': [
62 'python',
63 '<(dart_dir)/runtime/tools/create_resources.py',
64 '--output', '<(output_path)/vmservice_gen.cpp',
65 '--root_prefix', '<(dart_dir)/runtime/bin/',
66 '<@(_sources)'
67 ],
68 'message': 'Generating ''<(output_path)/vmservice_gen.cpp'' file.'
69 },
70 ]
71 },
72 {
42 'target_name': 'dart_debug_hooks_source', 73 'target_name': 'dart_debug_hooks_source',
43 'type': 'none', 74 'type': 'none',
44 'actions': [ 75 'actions': [
45 { 76 {
46 'action_name': 'generateDartDebugHooksSource', 77 'action_name': 'generateDartDebugHooksSource',
47 'inputs': [ 78 'inputs': [
48 '../DartDebugHooks.js', 79 '../DartDebugHooks.js',
49 ], 80 ],
50 'outputs': [ 81 'outputs': [
51 '<(SHARED_INTERMEDIATE_DIR)/blink/DartDebugHooksSource.h', 82 '<(SHARED_INTERMEDIATE_DIR)/blink/DartDebugHooksSource.h',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 }, 248 },
218 ], 249 ],
219 }, 250 },
220 { 251 {
221 'target_name': 'dart_snapshot', 252 'target_name': 'dart_snapshot',
222 'type': 'none', 253 'type': 'none',
223 'toolsets':['host'], 254 'toolsets':['host'],
224 'hard_dependency': 1, 255 'hard_dependency': 1,
225 'dependencies': [ 256 'dependencies': [
226 'dart_generated_sources', 257 'dart_generated_sources',
258 'generate_vmservice_cpp_file',
227 '<(dart_dir)/runtime/dart-runtime.gyp:gen_snapshot#host', 259 '<(dart_dir)/runtime/dart-runtime.gyp:gen_snapshot#host',
228 ], 260 ],
229 'variables': { 261 'variables': {
230 'idls_list_temp_file': '<|(idls_list_temp_file.tmp <@(bindings_idl_files ))', 262 'idls_list_temp_file': '<|(idls_list_temp_file.tmp <@(bindings_idl_files ))',
231 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart', 263 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart',
232 'dart_html_lib_dir': '<(dart_dir)/tools/dom', 264 'dart_html_lib_dir': '<(dart_dir)/tools/dom',
233 'dart_html_lib_deps': '<!(python scripts/dart_html_lib_deps.py <(dart_ht ml_lib_dir))', 265 'dart_html_lib_deps': '<!(python scripts/dart_html_lib_deps.py <(dart_ht ml_lib_dir))',
234 }, 266 },
235 'sources': [ 267 'sources': [
236 # '<!@(cat <(idls_list_temp_file))', 268 # '<!@(cat <(idls_list_temp_file))',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 '<(resources_dir)/DartSnapshot.bytes.template', 335 '<(resources_dir)/DartSnapshot.bytes.template',
304 '<(output_path)', 336 '<(output_path)',
305 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX) ', 337 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX) ',
306 '<@(pure_libs)', 338 '<@(pure_libs)',
307 ], 339 ],
308 }, 340 },
309 ], 341 ],
310 }, 342 },
311 ], 343 ],
312 } 344 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698