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

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

Issue 2969753002: [DevTools] Split auto-attach part of TargetHandler into a separate class (Closed)
Patch Set: similarity Created 3 years, 5 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//gpu/vulkan/features.gni") 8 import("//gpu/vulkan/features.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//ppapi/features/features.gni") 10 import("//ppapi/features/features.gni")
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 "devtools/protocol/schema_handler.cc", 550 "devtools/protocol/schema_handler.cc",
551 "devtools/protocol/schema_handler.h", 551 "devtools/protocol/schema_handler.h",
552 "devtools/protocol/security_handler.cc", 552 "devtools/protocol/security_handler.cc",
553 "devtools/protocol/security_handler.h", 553 "devtools/protocol/security_handler.h",
554 "devtools/protocol/service_worker_handler.cc", 554 "devtools/protocol/service_worker_handler.cc",
555 "devtools/protocol/service_worker_handler.h", 555 "devtools/protocol/service_worker_handler.h",
556 "devtools/protocol/storage_handler.cc", 556 "devtools/protocol/storage_handler.cc",
557 "devtools/protocol/storage_handler.h", 557 "devtools/protocol/storage_handler.h",
558 "devtools/protocol/system_info_handler.cc", 558 "devtools/protocol/system_info_handler.cc",
559 "devtools/protocol/system_info_handler.h", 559 "devtools/protocol/system_info_handler.h",
560 "devtools/protocol/target_auto_attacher.cc",
561 "devtools/protocol/target_auto_attacher.h",
560 "devtools/protocol/target_handler.cc", 562 "devtools/protocol/target_handler.cc",
561 "devtools/protocol/target_handler.h", 563 "devtools/protocol/target_handler.h",
562 "devtools/protocol/tethering_handler.cc", 564 "devtools/protocol/tethering_handler.cc",
563 "devtools/protocol/tethering_handler.h", 565 "devtools/protocol/tethering_handler.h",
564 "devtools/protocol/tracing_handler.cc", 566 "devtools/protocol/tracing_handler.cc",
565 "devtools/protocol/tracing_handler.h", 567 "devtools/protocol/tracing_handler.h",
566 "devtools/protocol_string.cc", 568 "devtools/protocol_string.cc",
567 "devtools/protocol_string.h", 569 "devtools/protocol_string.h",
568 "devtools/render_frame_devtools_agent_host.cc", 570 "devtools/render_frame_devtools_agent_host.cc",
569 "devtools/render_frame_devtools_agent_host.h", 571 "devtools/render_frame_devtools_agent_host.h",
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 "webrtc/webrtc_internals.h", 1637 "webrtc/webrtc_internals.h",
1636 "webrtc/webrtc_internals_message_handler.cc", 1638 "webrtc/webrtc_internals_message_handler.cc",
1637 "webrtc/webrtc_internals_message_handler.h", 1639 "webrtc/webrtc_internals_message_handler.h",
1638 "webrtc/webrtc_internals_ui.cc", 1640 "webrtc/webrtc_internals_ui.cc",
1639 "webrtc/webrtc_internals_ui.h", 1641 "webrtc/webrtc_internals_ui.h",
1640 "webrtc/webrtc_internals_ui_observer.h", 1642 "webrtc/webrtc_internals_ui_observer.h",
1641 ] 1643 ]
1642 1644
1643 deps += [ 1645 deps += [
1644 "//jingle:jingle_glue", 1646 "//jingle:jingle_glue",
1645 "//third_party/webrtc/rtc_base:rtc_base",
1646 "//third_party/webrtc/media:rtc_media_base", 1647 "//third_party/webrtc/media:rtc_media_base",
1647 "//third_party/webrtc/modules/desktop_capture:primitives", 1648 "//third_party/webrtc/modules/desktop_capture:primitives",
1649 "//third_party/webrtc/rtc_base:rtc_base",
1648 "//third_party/webrtc_overrides:init_webrtc", 1650 "//third_party/webrtc_overrides:init_webrtc",
1649 ] 1651 ]
1650 } 1652 }
1651 1653
1652 # Desktop screen capture implementations, conditionally built depending on 1654 # Desktop screen capture implementations, conditionally built depending on
1653 # the available implementations for each platform. 1655 # the available implementations for each platform.
1654 if (is_linux || is_mac || is_win) { 1656 if (is_linux || is_mac || is_win) {
1655 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] 1657 defines += [ "ENABLE_SCREEN_CAPTURE=1" ]
1656 sources += [ 1658 sources += [
1657 "media/capture/cursor_renderer.cc", 1659 "media/capture/cursor_renderer.cc",
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
2161 if (!is_component_build) { 2163 if (!is_component_build) {
2162 public_deps = [ 2164 public_deps = [
2163 ":browser", 2165 ":browser",
2164 ] 2166 ]
2165 } else { 2167 } else {
2166 public_deps = [ 2168 public_deps = [
2167 "//third_party/leveldatabase", 2169 "//third_party/leveldatabase",
2168 ] 2170 ]
2169 } 2171 }
2170 } 2172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698