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

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

Issue 2819183002: [DevTools] Consolidate overlay-related functionality in Overlay domain (Closed)
Patch Set: rebased bad merge Created 3 years, 7 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 "inspector/protocol/IO.cpp", 141 "inspector/protocol/IO.cpp",
142 "inspector/protocol/IO.h", 142 "inspector/protocol/IO.h",
143 "inspector/protocol/LayerTree.cpp", 143 "inspector/protocol/LayerTree.cpp",
144 "inspector/protocol/LayerTree.h", 144 "inspector/protocol/LayerTree.h",
145 "inspector/protocol/Log.cpp", 145 "inspector/protocol/Log.cpp",
146 "inspector/protocol/Log.h", 146 "inspector/protocol/Log.h",
147 "inspector/protocol/Memory.cpp", 147 "inspector/protocol/Memory.cpp",
148 "inspector/protocol/Memory.h", 148 "inspector/protocol/Memory.h",
149 "inspector/protocol/Network.cpp", 149 "inspector/protocol/Network.cpp",
150 "inspector/protocol/Network.h", 150 "inspector/protocol/Network.h",
151 "inspector/protocol/Overlay.cpp",
152 "inspector/protocol/Overlay.h",
151 "inspector/protocol/Page.cpp", 153 "inspector/protocol/Page.cpp",
152 "inspector/protocol/Page.h", 154 "inspector/protocol/Page.h",
153 "inspector/protocol/Protocol.cpp", 155 "inspector/protocol/Protocol.cpp",
154 "inspector/protocol/Protocol.h", 156 "inspector/protocol/Protocol.h",
155 "inspector/protocol/Rendering.cpp",
156 "inspector/protocol/Rendering.h",
157 "inspector/protocol/Runtime.h", 157 "inspector/protocol/Runtime.h",
158 "inspector/protocol/Security.cpp", 158 "inspector/protocol/Security.cpp",
159 "inspector/protocol/Security.h", 159 "inspector/protocol/Security.h",
160 "inspector/protocol/Target.cpp", 160 "inspector/protocol/Target.cpp",
161 "inspector/protocol/Target.h", 161 "inspector/protocol/Target.h",
162 "inspector/protocol/Tracing.cpp", 162 "inspector/protocol/Tracing.cpp",
163 "inspector/protocol/Tracing.h", 163 "inspector/protocol/Tracing.h",
164 ] 164 ]
165 165
166 deps = [ 166 deps = [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 outputs = [ 228 outputs = [
229 output_file, 229 output_file,
230 ] 230 ]
231 231
232 args = [ 232 args = [
233 rebase_path("browser_protocol.json", root_build_dir), 233 rebase_path("browser_protocol.json", root_build_dir),
234 rebase_path(v8_inspector_js_protocol, root_build_dir), 234 rebase_path(v8_inspector_js_protocol, root_build_dir),
235 rebase_path(output_file, root_build_dir), 235 rebase_path(output_file, root_build_dir),
236 ] 236 ]
237 } 237 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698