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