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

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

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for_landing! Created 4 years, 3 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("//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("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "//media/gpu/ipc/client", 77 "//media/gpu/ipc/client",
78 "//media/midi", 78 "//media/midi",
79 "//media/mojo/interfaces", 79 "//media/mojo/interfaces",
80 "//media/mojo/interfaces:image_capture", 80 "//media/mojo/interfaces:image_capture",
81 "//mojo/common", 81 "//mojo/common",
82 "//mojo/edk/system", 82 "//mojo/edk/system",
83 "//mojo/public/cpp/bindings", 83 "//mojo/public/cpp/bindings",
84 "//mojo/public/js", 84 "//mojo/public/js",
85 "//net", 85 "//net",
86 "//net:extras", 86 "//net:extras",
87 "//net:http_server",
87 "//services/file:lib", 88 "//services/file:lib",
88 "//services/file/public/cpp", 89 "//services/file/public/cpp",
89 "//services/file/public/interfaces", 90 "//services/file/public/interfaces",
90 "//services/shell", 91 "//services/shell",
91 "//services/shell/public/cpp", 92 "//services/shell/public/cpp",
92 "//services/shell/public/interfaces", 93 "//services/shell/public/interfaces",
93 "//services/shell/runner/common", 94 "//services/shell/runner/common",
94 "//services/shell/runner/host:lib", 95 "//services/shell/runner/host:lib",
95 "//skia", 96 "//skia",
96 "//sql", 97 "//sql",
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 "device_sensors/sensor_manager_chromeos.cc", 380 "device_sensors/sensor_manager_chromeos.cc",
380 "device_sensors/sensor_manager_chromeos.h", 381 "device_sensors/sensor_manager_chromeos.h",
381 "devtools/browser_devtools_agent_host.cc", 382 "devtools/browser_devtools_agent_host.cc",
382 "devtools/browser_devtools_agent_host.h", 383 "devtools/browser_devtools_agent_host.h",
383 "devtools/devtools_agent_host_impl.cc", 384 "devtools/devtools_agent_host_impl.cc",
384 "devtools/devtools_agent_host_impl.h", 385 "devtools/devtools_agent_host_impl.h",
385 "devtools/devtools_frame_trace_recorder.cc", 386 "devtools/devtools_frame_trace_recorder.cc",
386 "devtools/devtools_frame_trace_recorder.h", 387 "devtools/devtools_frame_trace_recorder.h",
387 "devtools/devtools_frontend_host_impl.cc", 388 "devtools/devtools_frontend_host_impl.cc",
388 "devtools/devtools_frontend_host_impl.h", 389 "devtools/devtools_frontend_host_impl.h",
390 "devtools/devtools_http_handler.cc",
391 "devtools/devtools_http_handler.h",
389 "devtools/devtools_io_context.cc", 392 "devtools/devtools_io_context.cc",
390 "devtools/devtools_io_context.h", 393 "devtools/devtools_io_context.h",
391 "devtools/devtools_manager.cc", 394 "devtools/devtools_manager.cc",
392 "devtools/devtools_manager.h", 395 "devtools/devtools_manager.h",
393 "devtools/devtools_protocol_handler.cc", 396 "devtools/devtools_protocol_handler.cc",
394 "devtools/devtools_protocol_handler.h", 397 "devtools/devtools_protocol_handler.h",
395 "devtools/forwarding_agent_host.cc", 398 "devtools/forwarding_agent_host.cc",
396 "devtools/forwarding_agent_host.h", 399 "devtools/forwarding_agent_host.h",
397 "devtools/page_navigation_throttle.cc", 400 "devtools/page_navigation_throttle.cc",
398 "devtools/page_navigation_throttle.h", 401 "devtools/page_navigation_throttle.h",
(...skipping 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after
1925 if (!is_component_build) { 1928 if (!is_component_build) {
1926 public_deps = [ 1929 public_deps = [
1927 ":browser", 1930 ":browser",
1928 ] 1931 ]
1929 } else { 1932 } else {
1930 public_deps = [ 1933 public_deps = [
1931 "//third_party/leveldatabase", 1934 "//third_party/leveldatabase",
1932 ] 1935 ]
1933 } 1936 }
1934 } 1937 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698