OLD | NEW |
1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("../../gni/v8.gni") | 5 import("../../gni/v8.gni") |
6 | 6 |
7 _inspector_protocol = "//third_party/WebKit/Source/platform/inspector_protocol" | 7 _inspector_protocol = "//third_party/WebKit/Source/platform/inspector_protocol" |
8 import("$_inspector_protocol/inspector_protocol.gni") | 8 import("$_inspector_protocol/inspector_protocol.gni") |
9 | 9 |
10 _protocol_generated = [ | 10 _protocol_generated = [ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 cflags += [ | 99 cflags += [ |
100 "/wd4267", # Truncation from size_t to int. | 100 "/wd4267", # Truncation from size_t to int. |
101 "/wd4305", # Truncation from 'type1' to 'type2'. | 101 "/wd4305", # Truncation from 'type1' to 'type2'. |
102 "/wd4324", # Struct padded due to declspec(align). | 102 "/wd4324", # Struct padded due to declspec(align). |
103 "/wd4714", # Function marked forceinline not inlined. | 103 "/wd4714", # Function marked forceinline not inlined. |
104 "/wd4800", # Value forced to bool. | 104 "/wd4800", # Value forced to bool. |
105 "/wd4996", # Deprecated function call. | 105 "/wd4996", # Deprecated function call. |
106 ] | 106 ] |
107 } | 107 } |
108 if (is_component_build) { | 108 if (is_component_build) { |
109 defines = [ "BUILDING_V8_SHARED" ] | 109 defines = [ |
| 110 "V8_SHARED", |
| 111 "BUILDING_V8_SHARED", |
| 112 ] |
110 } | 113 } |
111 } | 114 } |
112 | 115 |
113 v8_source_set("inspector") { | 116 v8_source_set("inspector") { |
114 deps = [ | 117 deps = [ |
115 ":inspector_debugger_script", | 118 ":inspector_debugger_script", |
116 ":inspector_injected_script", | 119 ":inspector_injected_script", |
117 ":protocol_generated_sources", | 120 ":protocol_generated_sources", |
118 ] | 121 ] |
119 configs = [ ":inspector_config" ] | 122 configs = [ ":inspector_config" ] |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "V8RuntimeAgentImpl.cpp", | 185 "V8RuntimeAgentImpl.cpp", |
183 "V8RuntimeAgentImpl.h", | 186 "V8RuntimeAgentImpl.h", |
184 "V8SchemaAgentImpl.cpp", | 187 "V8SchemaAgentImpl.cpp", |
185 "V8SchemaAgentImpl.h", | 188 "V8SchemaAgentImpl.h", |
186 "V8StackTraceImpl.cpp", | 189 "V8StackTraceImpl.cpp", |
187 "V8StackTraceImpl.h", | 190 "V8StackTraceImpl.h", |
188 "V8ValueCopier.cpp", | 191 "V8ValueCopier.cpp", |
189 "V8ValueCopier.h", | 192 "V8ValueCopier.h", |
190 ] | 193 ] |
191 } | 194 } |
OLD | NEW |