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

Side by Side Diff: src/inspector/BUILD.gn

Issue 2342563002: [d8] Fix the shared-library build (Closed)
Patch Set: Mark as extern in .cc Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/heap/spaces.h ('k') | src/interpreter/interpreter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 = [ 109 defines = [ "BUILDING_V8_SHARED" ]
110 "V8_SHARED",
111 "BUILDING_V8_SHARED",
112 ]
113 } 110 }
114 } 111 }
115 112
116 v8_source_set("inspector") { 113 v8_source_set("inspector") {
117 deps = [ 114 deps = [
118 ":inspector_debugger_script", 115 ":inspector_debugger_script",
119 ":inspector_injected_script", 116 ":inspector_injected_script",
120 ":protocol_generated_sources", 117 ":protocol_generated_sources",
121 ] 118 ]
122 configs = [ ":inspector_config" ] 119 configs = [ ":inspector_config" ]
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "V8RuntimeAgentImpl.cpp", 181 "V8RuntimeAgentImpl.cpp",
185 "V8RuntimeAgentImpl.h", 182 "V8RuntimeAgentImpl.h",
186 "V8SchemaAgentImpl.cpp", 183 "V8SchemaAgentImpl.cpp",
187 "V8SchemaAgentImpl.h", 184 "V8SchemaAgentImpl.h",
188 "V8StackTraceImpl.cpp", 185 "V8StackTraceImpl.cpp",
189 "V8StackTraceImpl.h", 186 "V8StackTraceImpl.h",
190 "V8ValueCopier.cpp", 187 "V8ValueCopier.cpp",
191 "V8ValueCopier.h", 188 "V8ValueCopier.h",
192 ] 189 ]
193 } 190 }
OLDNEW
« no previous file with comments | « src/heap/spaces.h ('k') | src/interpreter/interpreter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698