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

Side by Side Diff: content/browser/BUILD.gn

Issue 2548263002: [DevTools] Migrate dom, emulation, inspector, network, page and schema handlers to new generator. (Closed)
Patch Set: rebased atop of roll Created 4 years 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
« no previous file with comments | « no previous file | content/browser/devtools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 public_deps = [ 155 public_deps = [
156 "//media/mojo/interfaces:remoting", 156 "//media/mojo/interfaces:remoting",
157 "//third_party/leveldatabase", 157 "//third_party/leveldatabase",
158 ] 158 ]
159 159
160 sources = [ 160 sources = [
161 # devtools_protocol_dispatcher.* is generated by 161 # devtools_protocol_dispatcher.* is generated by
162 # //content/browser/devtools:gen_devtools_protocol_handler. 162 # //content/browser/devtools:gen_devtools_protocol_handler.
163 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.cc", 163 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.cc",
164 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.h", 164 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.h",
165 "$target_gen_dir/devtools/protocol/dom.cc",
166 "$target_gen_dir/devtools/protocol/dom.h",
167 "$target_gen_dir/devtools/protocol/emulation.cc",
168 "$target_gen_dir/devtools/protocol/emulation.h",
165 "$target_gen_dir/devtools/protocol/forward.h", 169 "$target_gen_dir/devtools/protocol/forward.h",
170 "$target_gen_dir/devtools/protocol/inspector.cc",
171 "$target_gen_dir/devtools/protocol/inspector.h",
166 "$target_gen_dir/devtools/protocol/io.cc", 172 "$target_gen_dir/devtools/protocol/io.cc",
167 "$target_gen_dir/devtools/protocol/io.h", 173 "$target_gen_dir/devtools/protocol/io.h",
168 "$target_gen_dir/devtools/protocol/memory.cc", 174 "$target_gen_dir/devtools/protocol/memory.cc",
169 "$target_gen_dir/devtools/protocol/memory.h", 175 "$target_gen_dir/devtools/protocol/memory.h",
176 "$target_gen_dir/devtools/protocol/network.cc",
177 "$target_gen_dir/devtools/protocol/network.h",
178 "$target_gen_dir/devtools/protocol/page.cc",
179 "$target_gen_dir/devtools/protocol/page.h",
170 "$target_gen_dir/devtools/protocol/protocol.cc", 180 "$target_gen_dir/devtools/protocol/protocol.cc",
171 "$target_gen_dir/devtools/protocol/protocol.h", 181 "$target_gen_dir/devtools/protocol/protocol.h",
182 "$target_gen_dir/devtools/protocol/schema.cc",
183 "$target_gen_dir/devtools/protocol/schema.h",
172 "$target_gen_dir/devtools/protocol/system_info.cc", 184 "$target_gen_dir/devtools/protocol/system_info.cc",
173 "$target_gen_dir/devtools/protocol/system_info.h", 185 "$target_gen_dir/devtools/protocol/system_info.h",
174 "$target_gen_dir/devtools/protocol/tethering.cc", 186 "$target_gen_dir/devtools/protocol/tethering.cc",
175 "$target_gen_dir/devtools/protocol/tethering.h", 187 "$target_gen_dir/devtools/protocol/tethering.h",
176 "$target_gen_dir/devtools/protocol/tracing.cc", 188 "$target_gen_dir/devtools/protocol/tracing.cc",
177 "$target_gen_dir/devtools/protocol/tracing.h", 189 "$target_gen_dir/devtools/protocol/tracing.h",
178 "../common/service_manager/child_connection.cc", 190 "../common/service_manager/child_connection.cc",
179 "../common/service_manager/child_connection.h", 191 "../common/service_manager/child_connection.h",
180 "../zygote/zygote_linux.cc", 192 "../zygote/zygote_linux.cc",
181 "../zygote/zygote_linux.h", 193 "../zygote/zygote_linux.h",
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after
1960 if (!is_component_build) { 1972 if (!is_component_build) {
1961 public_deps = [ 1973 public_deps = [
1962 ":browser", 1974 ":browser",
1963 ] 1975 ]
1964 } else { 1976 } else {
1965 public_deps = [ 1977 public_deps = [
1966 "//third_party/leveldatabase", 1978 "//third_party/leveldatabase",
1967 ] 1979 ]
1968 } 1980 }
1969 } 1981 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698