build,deps: move gypfiles out 2/2 - moving · nodejs/node@3b5773f (original) (raw)

`@@ -3,6 +3,9 @@

`

3

3

`# found in the LICENSE file.

`

4

4

``

5

5

`{

`

``

6

`+

'includes': [

`

``

7

`+

'../../deps/v8/third_party/inspector_protocol/inspector_protocol.gypi',

`

``

8

`+

],

`

6

9

`'variables': {

`

7

10

`'inspector_protocol_path': '<(V8_ROOT)/third_party/inspector_protocol',

`

8

11

`'inspector_path': '<(V8_ROOT)/src/inspector',

`

83

86

`'<(V8_ROOT)/src/inspector/wasm-translation.h',

`

84

87

` ]

`

85

88

` },

`

86

``

`-

'includes': [

`

87

``

`-

'<(V8_ROOT)/third_party/inspector_protocol/inspector_protocol.gypi',

`

88

``

`-

],

`

89

``

`-

'include_dirs': [

`

90

``

`-

'<(inspector_generated_output_root)',

`

91

``

`-

],

`

92

``

`-

'actions': [

`

93

``

`-

{

`

94

``

`-

'action_name': 'protocol_compatibility',

`

95

``

`-

'inputs': [

`

96

``

`-

'<(inspector_path)/js_protocol.pdl',

`

97

``

`-

],

`

98

``

`-

'outputs': [

`

99

``

`-

'<@(inspector_generated_output_root)/src/js_protocol.stamp',

`

100

``

`-

],

`

101

``

`-

'action': [

`

102

``

`-

'python',

`

103

``

`-

'<(inspector_protocol_path)/check_protocol_compatibility.py',

`

104

``

`-

'--stamp', '<@(_outputs)',

`

105

``

`-

'<@(_inputs)',

`

106

``

`-

],

`

107

``

`-

'message': 'Checking inspector protocol compatibility',

`

108

``

`-

},

`

109

``

`-

{

`

110

``

`-

'action_name': 'protocol_generated_sources',

`

111

``

`-

'inputs': [

`

112

``

`-

'<(inspector_path)/js_protocol.pdl',

`

113

``

`-

'<(inspector_path)/inspector_protocol_config.json',

`

114

``

`-

'<@(inspector_protocol_files)',

`

115

``

`-

],

`

116

``

`-

'outputs': [

`

117

``

`-

'<@(inspector_generated_sources)',

`

118

``

`-

],

`

119

``

`-

'process_outputs_as_sources': 1,

`

120

``

`-

'action': [

`

121

``

`-

'python',

`

122

``

`-

'<(inspector_protocol_path)/code_generator.py',

`

123

``

`-

'--jinja_dir', '<(V8_ROOT)/third_party',

`

124

``

`-

'--output_base', '<(inspector_generated_output_root)/src/inspector',

`

125

``

`-

'--config', '<(inspector_path)/inspector_protocol_config.json',

`

126

``

`-

],

`

127

``

`-

'message': 'Generating inspector protocol sources from protocol json',

`

128

``

`-

},

`

129

``

`-

],

`

``

89

`+

'include_dirs': [

`

``

90

`+

'<(inspector_generated_output_root)',

`

``

91

`+

],

`

``

92

`+

'actions': [

`

``

93

`+

{

`

``

94

`+

'action_name': 'protocol_compatibility',

`

``

95

`+

'inputs': [

`

``

96

`+

'<(inspector_path)/js_protocol.pdl',

`

``

97

`+

],

`

``

98

`+

'outputs': [

`

``

99

`+

'<@(inspector_generated_output_root)/src/js_protocol.stamp',

`

``

100

`+

],

`

``

101

`+

'action': [

`

``

102

`+

'python',

`

``

103

`+

'<(inspector_protocol_path)/check_protocol_compatibility.py',

`

``

104

`+

'--stamp', '<@(_outputs)',

`

``

105

`+

'<@(_inputs)',

`

``

106

`+

],

`

``

107

`+

'message': 'Checking inspector protocol compatibility',

`

``

108

`+

},

`

``

109

`+

{

`

``

110

`+

'action_name': 'protocol_generated_sources',

`

``

111

`+

'inputs': [

`

``

112

`+

'<(inspector_path)/js_protocol.pdl',

`

``

113

`+

'<(inspector_path)/inspector_protocol_config.json',

`

``

114

`+

'<@(inspector_protocol_files)',

`

``

115

`+

],

`

``

116

`+

'outputs': [

`

``

117

`+

'<@(inspector_generated_sources)',

`

``

118

`+

],

`

``

119

`+

'process_outputs_as_sources': 1,

`

``

120

`+

'action': [

`

``

121

`+

'python',

`

``

122

`+

'<(inspector_protocol_path)/code_generator.py',

`

``

123

`+

'--jinja_dir', '<(V8_ROOT)/third_party',

`

``

124

`+

'--output_base', '<(inspector_generated_output_root)/src/inspector',

`

``

125

`+

'--config', '<(inspector_path)/inspector_protocol_config.json',

`

``

126

`+

],

`

``

127

`+

'message': 'Generating inspector protocol sources from protocol json',

`

``

128

`+

},

`

``

129

`+

],

`

130

130

`}

`