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

Unified Diff: Source/core/core.gyp

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/core.gyp
diff --git a/Source/core/core.gyp b/Source/core/core.gyp
index bd4d3a69dc13e039287fbf2b3e5be62c845dc43c..aed23b932fc9a0bf1bf0c4cad147ce9a3fbed632 100644
--- a/Source/core/core.gyp
+++ b/Source/core/core.gyp
@@ -278,6 +278,9 @@
# Generated from make_style_builder.py
'<(blink_core_output_dir)/StyleBuilder.cpp',
'<(blink_core_output_dir)/StyleBuilderFunctions.cpp',
+
+ # IDL dictionary impl files generated by IDL compiler
+ # FIXME: Add '<@(generated_core_dictionary_files)',
],
'conditions': [
['OS=="win" and component=="shared_library"', {
@@ -738,6 +741,7 @@
'dependencies': [
'../config.gyp:config',
'webcore',
+ 'webcore_generated',
],
'defines': [
'BLINK_IMPLEMENTATION=1',
@@ -751,6 +755,8 @@
'sources': [
# Note: file list duplicated in GN build.
'<@(webcore_testing_files)',
+ '<(bindings_core_v8_output_dir)/V8DictionaryTest.cpp',
+ '<(bindings_core_v8_output_dir)/V8DictionaryTest.h',
'<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.cpp',
'<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.h',
'<(bindings_core_v8_output_dir)/V8GCObservation.cpp',
@@ -777,6 +783,8 @@
'<(bindings_core_v8_output_dir)/V8LayerRectList.h',
'<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp',
'<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h',
+ '<(bindings_core_v8_output_dir)/V8TestingDictionary.cpp',
+ '<(bindings_core_v8_output_dir)/V8TestingDictionary.h',
],
'sources/': [
['exclude', 'testing/js'],

Powered by Google App Engine
This is Rietveld 408576698