| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 jumbo_excluded_sources = [ | 97 jumbo_excluded_sources = [ |
| 98 # Collides with DOMPatchSupport.cpp (patch incoming) | 98 # Collides with DOMPatchSupport.cpp (patch incoming) |
| 99 "InspectorAnimationAgent.cpp", | 99 "InspectorAnimationAgent.cpp", |
| 100 | 100 |
| 101 # Collides with InspectorPageAgent.cpp and | 101 # Collides with InspectorPageAgent.cpp and |
| 102 # NetworkResourcesData.cpp (patch incoming) | 102 # NetworkResourcesData.cpp (patch incoming) |
| 103 "InspectorNetworkAgent.cpp", | 103 "InspectorNetworkAgent.cpp", |
| 104 | 104 |
| 105 # Collides with InspectorPageAgent.cpp (patch incoming) | 105 # Collides with InspectorPageAgent.cpp (patch incoming) |
| 106 "MainThreadDebugger.cpp", | 106 "MainThreadDebugger.cpp", |
| 107 | |
| 108 "InspectorOverlayAgent.cpp", # Way too many different "Response" | |
| 109 "InspectorEmulationAgent.cpp", # Way too many different "Response" | |
| 110 ] | 107 ] |
| 111 | 108 |
| 112 configs += [ | 109 configs += [ |
| 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 114 "//build/config/compiler:no_size_t_to_int_warning", | 111 "//build/config/compiler:no_size_t_to_int_warning", |
| 115 ] | 112 ] |
| 116 } | 113 } |
| 117 | 114 |
| 118 # inspector protocol ----------------------------------------------------------- | 115 # inspector protocol ----------------------------------------------------------- |
| 119 | 116 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 outputs = [ | 250 outputs = [ |
| 254 output_file, | 251 output_file, |
| 255 ] | 252 ] |
| 256 | 253 |
| 257 args = [ | 254 args = [ |
| 258 rebase_path("browser_protocol.json", root_build_dir), | 255 rebase_path("browser_protocol.json", root_build_dir), |
| 259 rebase_path(v8_inspector_js_protocol, root_build_dir), | 256 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 260 rebase_path(output_file, root_build_dir), | 257 rebase_path(output_file, root_build_dir), |
| 261 ] | 258 ] |
| 262 } | 259 } |
| OLD | NEW |