| OLD | NEW |
| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "ThreadDebugger.cpp", | 87 "ThreadDebugger.cpp", |
| 88 "ThreadDebugger.h", | 88 "ThreadDebugger.h", |
| 89 "V8InspectorString.cpp", | 89 "V8InspectorString.cpp", |
| 90 "V8InspectorString.h", | 90 "V8InspectorString.h", |
| 91 "WorkerInspectorController.cpp", | 91 "WorkerInspectorController.cpp", |
| 92 "WorkerInspectorController.h", | 92 "WorkerInspectorController.h", |
| 93 "WorkerThreadDebugger.cpp", | 93 "WorkerThreadDebugger.cpp", |
| 94 "WorkerThreadDebugger.h", | 94 "WorkerThreadDebugger.h", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 jumbo_excluded_sources = [ |
| 98 # Collides with DOMPatchSupport.cpp (patch incoming) |
| 99 "InspectorAnimationAgent.cpp", |
| 100 |
| 101 # Collides with InspectorPageAgent.cpp and |
| 102 # NetworkResourcesData.cpp (patch incoming) |
| 103 "InspectorNetworkAgent.cpp", |
| 104 |
| 105 # Collides with InspectorPageAgent.cpp (patch incoming) |
| 106 "MainThreadDebugger.cpp", |
| 107 |
| 108 "InspectorOverlayAgent.cpp", # Way too many different "Response" |
| 109 "InspectorEmulationAgent.cpp", # Way too many different "Response" |
| 110 ] |
| 111 |
| 97 configs += [ | 112 configs += [ |
| 98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 99 "//build/config/compiler:no_size_t_to_int_warning", | 114 "//build/config/compiler:no_size_t_to_int_warning", |
| 100 ] | 115 ] |
| 101 } | 116 } |
| 102 | 117 |
| 103 # inspector protocol ----------------------------------------------------------- | 118 # inspector protocol ----------------------------------------------------------- |
| 104 | 119 |
| 105 inspector_protocol_generate("protocol_sources") { | 120 inspector_protocol_generate("protocol_sources") { |
| 106 inspector_protocol_dir = _inspector_protocol_dir | 121 inspector_protocol_dir = _inspector_protocol_dir |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 outputs = [ | 253 outputs = [ |
| 239 output_file, | 254 output_file, |
| 240 ] | 255 ] |
| 241 | 256 |
| 242 args = [ | 257 args = [ |
| 243 rebase_path("browser_protocol.json", root_build_dir), | 258 rebase_path("browser_protocol.json", root_build_dir), |
| 244 rebase_path(v8_inspector_js_protocol, root_build_dir), | 259 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 245 rebase_path(output_file, root_build_dir), | 260 rebase_path(output_file, root_build_dir), |
| 246 ] | 261 ] |
| 247 } | 262 } |
| OLD | NEW |