OLD | NEW |
1 { | 1 { |
2 'includes': [ | 2 'includes': [ |
3 '../../../build/features.gypi', | 3 '../../../build/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 Loading... |
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 'scripts/create_resources.py', | |
56 '<@(_sources)', | |
57 ], | |
58 'outputs': [ | |
59 '<(output_path)/vmservice_gen.cpp' | |
60 ], | |
61 'action': [ | |
62 'python', | |
63 'scripts/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 { | |
73 'target_name': 'dart_debug_hooks_source', | 42 'target_name': 'dart_debug_hooks_source', |
74 'type': 'none', | 43 'type': 'none', |
75 'actions': [ | 44 'actions': [ |
76 { | 45 { |
77 'action_name': 'generateDartDebugHooksSource', | 46 'action_name': 'generateDartDebugHooksSource', |
78 'inputs': [ | 47 'inputs': [ |
79 '../DartDebugHooks.js', | 48 '../DartDebugHooks.js', |
80 ], | 49 ], |
81 'outputs': [ | 50 'outputs': [ |
82 '<(SHARED_INTERMEDIATE_DIR)/blink/DartDebugHooksSource.h', | 51 '<(SHARED_INTERMEDIATE_DIR)/blink/DartDebugHooksSource.h', |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 }, | 200 }, |
232 ], | 201 ], |
233 }, | 202 }, |
234 { | 203 { |
235 'target_name': 'dart_snapshot', | 204 'target_name': 'dart_snapshot', |
236 'type': 'none', | 205 'type': 'none', |
237 'toolsets':['host'], | 206 'toolsets':['host'], |
238 'hard_dependency': 1, | 207 'hard_dependency': 1, |
239 'dependencies': [ | 208 'dependencies': [ |
240 'dart_generated_sources', | 209 'dart_generated_sources', |
241 'generate_vmservice_cpp_file', | |
242 '<(dart_dir)/runtime/dart-runtime.gyp:gen_snapshot#host', | 210 '<(dart_dir)/runtime/dart-runtime.gyp:gen_snapshot#host', |
243 ], | 211 ], |
244 'variables': { | 212 'variables': { |
245 'idls_list_temp_file': '<|(idls_list_temp_file.tmp <@(bindings_idl_files
))', | 213 'idls_list_temp_file': '<|(idls_list_temp_file.tmp <@(bindings_idl_files
))', |
246 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart', | 214 'output_path': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/dart', |
247 'dart_html_lib_dir': '<(dart_dir)/tools/dom', | 215 'dart_html_lib_dir': '<(dart_dir)/tools/dom', |
248 'dart_html_lib_deps': '<!(python scripts/dart_html_lib_deps.py <(dart_ht
ml_lib_dir))', | 216 'dart_html_lib_deps': '<!(python scripts/dart_html_lib_deps.py <(dart_ht
ml_lib_dir))', |
249 }, | 217 }, |
250 'sources': [ | 218 'sources': [ |
251 # '<!@(cat <(idls_list_temp_file))', | 219 # '<!@(cat <(idls_list_temp_file))', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 '<(resources_dir)/DartSnapshot.bytes.template', | 287 '<(resources_dir)/DartSnapshot.bytes.template', |
320 '<(output_path)', | 288 '<(output_path)', |
321 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)
', | 289 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX)
', |
322 '<@(pure_libs)', | 290 '<@(pure_libs)', |
323 ], | 291 ], |
324 }, | 292 }, |
325 ], | 293 ], |
326 }, | 294 }, |
327 ], | 295 ], |
328 } | 296 } |
OLD | NEW |