|
IDL: Add build target for IDL dictionary impl generation in core
This CL adds a build target named 'bindings_core_dictionary_impl_generated',
which generaets IDL dictionary impl files for core component.
We have to list generated impl files explicitly in gypi file because
(1) we don't want to use 'aggregated' build (unlike what we are doing for
v8 bindings), and (2) we want to generate impl files in corresponding
directories(e.g. core/css). It seems there is no easy way to make GYP (or GN)
workable satisfying both (1) and (2).
- Added "--generate-dictionary-impl" option flag to idl_compiler.py. If this
option is specified, the compiler assumes that the passed argument is a file
which contains paths of IDL dictionary files. The compiler generates DOM
impl classes for each IDL dictionary files.
- Refactored IdlCompiler and CodeGenerator.
- Added a test for IDL dictionary. In layout tests,
window.internals.dictionaryTest() returns an InternalDictionary instance.
This instance has two methods: set() takes InternalDictionary as the
argument and stores each value of all members. get() returns an
InternalDictionary instance that contains values which were set via set().
BUG= 321462
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=180969
Total comments: 13
Total comments: 5
Total comments: 2
Total comments: 4
Total comments: 4
Total comments: 27
Total comments: 5
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+555 lines, -80 lines) |
Patch |
 |
A |
LayoutTests/fast/dom/idl-dictionary-unittest.html
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+62 lines, -0 lines |
0 comments
|
Download
|
 |
A |
LayoutTests/fast/dom/idl-dictionary-unittest-expected.txt
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+33 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/core/idl.gni
|
View
|
1
2
3
|
1 chunk |
+6 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/core/idl.gypi
|
View
|
1
2
3
|
2 chunks |
+8 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/core/v8/BUILD.gn
|
View
|
1
2
3
4
|
2 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/core/v8/generated.gyp
|
View
|
1
2
3
4
|
2 chunks |
+55 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/modules/v8/generated.gyp
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -3 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/aggregate_generated_bindings.py
|
View
|
1
2
3
4
5
6
|
3 chunks |
+2 lines, -26 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/code_generator_v8.py
|
View
|
1
2
3
4
5
6
7
|
5 chunks |
+49 lines, -27 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/compute_interfaces_info_individual.py
|
View
|
1
2
3
4
|
3 chunks |
+11 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/idl_compiler.py
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+39 lines, -5 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/scripts.gni
|
View
|
1
2
|
1 chunk |
+39 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/scripts.gypi
|
View
|
1
2
3
4
|
1 chunk |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/utilities.py
|
View
|
1
2
3
|
3 chunks |
+32 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/scripts/v8_methods.py
|
View
|
1
2
3
4
5
6
|
2 chunks |
+6 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/tests/results/V8TestObject.cpp
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+5 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/BUILD.gn
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+6 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/core.gni
|
View
|
1
2
3
4
5
|
2 chunks |
+7 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/core.gyp
|
View
|
1
2
3
4
5
6
7
8
|
4 chunks |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/core.gypi
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+22 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/testing/DictionaryTest.h
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+49 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/testing/DictionaryTest.cpp
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+63 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
Source/core/testing/DictionaryTest.idl
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
A |
Source/core/testing/InternalDictionary.idl
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+13 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/testing/Internals.h
|
View
|
1
2
3
4
5
6
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/testing/Internals.cpp
|
View
|
1
2
3
4
5
6
|
2 chunks |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/testing/Internals.idl
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Tools/Scripts/webkitpy/bindings/main.py
|
View
|
1
2
3
4
5
6
7
|
3 chunks |
+8 lines, -1 line |
0 comments
|
Download
|
Total messages: 35 (0 generated)
|