| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "NetworkResourcesData.cpp", | 77 "NetworkResourcesData.cpp", |
| 78 "NetworkResourcesData.h", | 78 "NetworkResourcesData.h", |
| 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 "addStringToDigestor.cpp", |
| 88 "addStringToDigestor.h", |
| 87 ] | 89 ] |
| 88 | 90 |
| 89 configs += [ | 91 configs += [ |
| 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 91 "//build/config/compiler:no_size_t_to_int_warning", | 93 "//build/config/compiler:no_size_t_to_int_warning", |
| 92 ] | 94 ] |
| 93 } | 95 } |
| 94 | 96 |
| 95 # inspector protocol ----------------------------------------------------------- | 97 # inspector protocol ----------------------------------------------------------- |
| 96 | 98 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 outputs = [ | 229 outputs = [ |
| 228 output_file, | 230 output_file, |
| 229 ] | 231 ] |
| 230 | 232 |
| 231 args = [ | 233 args = [ |
| 232 rebase_path("browser_protocol.json", root_build_dir), | 234 rebase_path("browser_protocol.json", root_build_dir), |
| 233 rebase_path(v8_inspector_js_protocol, root_build_dir), | 235 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 234 rebase_path(output_file, root_build_dir), | 236 rebase_path(output_file, root_build_dir), |
| 235 ] | 237 ] |
| 236 } | 238 } |
| OLD | NEW |