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

Side by Side Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 2824663002: Minimal set of changes for blink core jumbo build. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/core/core.gni") 6 import("//third_party/WebKit/Source/core/core.gni")
7 import("//third_party/inspector_protocol/inspector_protocol.gni") 7 import("//third_party/inspector_protocol/inspector_protocol.gni")
8 import("//v8/gni/v8.gni") 8 import("//v8/gni/v8.gni")
9 9
10 _inspector_protocol_dir = "//third_party/inspector_protocol" 10 _inspector_protocol_dir = "//third_party/inspector_protocol"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "ThreadDebugger.cpp", 79 "ThreadDebugger.cpp",
80 "ThreadDebugger.h", 80 "ThreadDebugger.h",
81 "V8InspectorString.cpp", 81 "V8InspectorString.cpp",
82 "V8InspectorString.h", 82 "V8InspectorString.h",
83 "WorkerInspectorController.cpp", 83 "WorkerInspectorController.cpp",
84 "WorkerInspectorController.h", 84 "WorkerInspectorController.h",
85 "WorkerThreadDebugger.cpp", 85 "WorkerThreadDebugger.cpp",
86 "WorkerThreadDebugger.h", 86 "WorkerThreadDebugger.h",
87 ] 87 ]
88 88
89 jumbo_excluded_sources = [
90 # Collides with DOMPatchSupport.cpp (patch incoming)
91 "InspectorAnimationAgent.cpp",
92
93 # Collides with InspectorPageAgent.cpp and
94 # NetworkResourcesData.cpp (patch incoming)
95 "InspectorNetworkAgent.cpp",
96
97 # Collides with InspectorPageAgent.cpp (patch incoming)
98 "MainThreadDebugger.cpp",
99 ]
100
89 configs += [ 101 configs += [
90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
91 "//build/config/compiler:no_size_t_to_int_warning", 103 "//build/config/compiler:no_size_t_to_int_warning",
92 ] 104 ]
93 } 105 }
94 106
95 # inspector protocol ----------------------------------------------------------- 107 # inspector protocol -----------------------------------------------------------
96 108
97 inspector_protocol_generate("protocol_sources") { 109 inspector_protocol_generate("protocol_sources") {
98 inspector_protocol_dir = _inspector_protocol_dir 110 inspector_protocol_dir = _inspector_protocol_dir
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 outputs = [ 239 outputs = [
228 output_file, 240 output_file,
229 ] 241 ]
230 242
231 args = [ 243 args = [
232 rebase_path("browser_protocol.json", root_build_dir), 244 rebase_path("browser_protocol.json", root_build_dir),
233 rebase_path(v8_inspector_js_protocol, root_build_dir), 245 rebase_path(v8_inspector_js_protocol, root_build_dir),
234 rebase_path(output_file, root_build_dir), 246 rebase_path(output_file, root_build_dir),
235 ] 247 ]
236 } 248 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/BUILD.gn ('k') | third_party/WebKit/Source/core/layout/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698