| Index: Source/bindings/dart/gyp/dartium.gyp
|
| diff --git a/Source/bindings/dart/gyp/dartium.gyp b/Source/bindings/dart/gyp/dartium.gyp
|
| index 774c235cb6154a7e28970c49c23c178a6cae759d..38ad6de99634370f2c28ec048964e4f00b35ca27 100644
|
| --- a/Source/bindings/dart/gyp/dartium.gyp
|
| +++ b/Source/bindings/dart/gyp/dartium.gyp
|
| @@ -39,6 +39,37 @@
|
|
|
| 'targets': [
|
| {
|
| + 'target_name': 'generate_vmservice_cpp_file',
|
| + 'type': 'none',
|
| + 'toolsets':['host'],
|
| + 'includes': [
|
| + 'resources_sources.gypi',
|
| + ],
|
| + 'variables': {
|
| + 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart',
|
| + },
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'generate_vmservice_cpp',
|
| + 'inputs': [
|
| + '<(dart_dir)/runtime/tools/create_resources.py',
|
| + '<@(_sources)',
|
| + ],
|
| + 'outputs': [
|
| + '<(output_path)/vmservice_gen.cpp'
|
| + ],
|
| + 'action': [
|
| + 'python',
|
| + '<(dart_dir)/runtime/tools/create_resources.py',
|
| + '--output', '<(output_path)/vmservice_gen.cpp',
|
| + '--root_prefix', '<(dart_dir)/runtime/bin/',
|
| + '<@(_sources)'
|
| + ],
|
| + 'message': 'Generating ''<(output_path)/vmservice_gen.cpp'' file.'
|
| + },
|
| + ]
|
| + },
|
| + {
|
| 'target_name': 'dart_debug_hooks_source',
|
| 'type': 'none',
|
| 'actions': [
|
| @@ -224,6 +255,7 @@
|
| 'hard_dependency': 1,
|
| 'dependencies': [
|
| 'dart_generated_sources',
|
| + 'generate_vmservice_cpp_file',
|
| '<(dart_dir)/runtime/dart-runtime.gyp:gen_snapshot#host',
|
| ],
|
| 'variables': {
|
|
|