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

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

Issue 2493063005: [DevTools] Use inspector_protocol generator in content/browser/devtools. (Closed)
Patch Set: Created 4 years, 1 month 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("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//components/tracing", 46 "//components/tracing",
47 "//components/tracing:startup_tracing", 47 "//components/tracing:startup_tracing",
48 "//components/url_formatter", 48 "//components/url_formatter",
49 "//components/variations", 49 "//components/variations",
50 "//content:resources", 50 "//content:resources",
51 "//content/app/resources", 51 "//content/app/resources",
52 "//content/app/strings", 52 "//content/app/strings",
53 "//content/browser/background_sync:background_sync_proto", 53 "//content/browser/background_sync:background_sync_proto",
54 "//content/browser/cache_storage:cache_storage_proto", 54 "//content/browser/cache_storage:cache_storage_proto",
55 "//content/browser/devtools:gen_devtools_protocol_handler", 55 "//content/browser/devtools:gen_devtools_protocol_handler",
56 "//content/browser/devtools:protocol_sources",
56 "//content/browser/devtools:resources", 57 "//content/browser/devtools:resources",
57 "//content/browser/notifications:notification_proto", 58 "//content/browser/notifications:notification_proto",
58 "//content/browser/service_worker:service_worker_proto", 59 "//content/browser/service_worker:service_worker_proto",
59 "//content/browser/speech/proto", 60 "//content/browser/speech/proto",
60 "//content/common", 61 "//content/common",
61 "//content/public/common:common_sources", 62 "//content/public/common:common_sources",
62 "//crypto", 63 "//crypto",
63 "//device/battery", 64 "//device/battery",
64 "//device/battery:mojo_bindings", 65 "//device/battery:mojo_bindings",
65 "//device/bluetooth", 66 "//device/bluetooth",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 147
147 public_deps = [ 148 public_deps = [
148 "//third_party/leveldatabase", 149 "//third_party/leveldatabase",
149 ] 150 ]
150 151
151 sources = [ 152 sources = [
152 # devtools_protocol_dispatcher.* is generated by 153 # devtools_protocol_dispatcher.* is generated by
153 # //content/browser/devtools:gen_devtools_protocol_handler. 154 # //content/browser/devtools:gen_devtools_protocol_handler.
154 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.cc", 155 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.cc",
155 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.h", 156 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche r.h",
157 "$target_gen_dir/devtools/protocol/forward.h",
158 "$target_gen_dir/devtools/protocol/protocol.cc",
159 "$target_gen_dir/devtools/protocol/protocol.h",
160 "$target_gen_dir/devtools/protocol/tracing.cc",
161 "$target_gen_dir/devtools/protocol/tracing.h",
156 "../common/service_manager/child_connection.cc", 162 "../common/service_manager/child_connection.cc",
157 "../common/service_manager/child_connection.h", 163 "../common/service_manager/child_connection.h",
158 "../zygote/zygote_linux.cc", 164 "../zygote/zygote_linux.cc",
159 "../zygote/zygote_linux.h", 165 "../zygote/zygote_linux.h",
160 "../zygote/zygote_main_linux.cc", 166 "../zygote/zygote_main_linux.cc",
161 "accessibility/accessibility_mode_helper.cc", 167 "accessibility/accessibility_mode_helper.cc",
162 "accessibility/accessibility_mode_helper.h", 168 "accessibility/accessibility_mode_helper.h",
163 "accessibility/accessibility_tree_formatter.cc", 169 "accessibility/accessibility_tree_formatter.cc",
164 "accessibility/accessibility_tree_formatter.h", 170 "accessibility/accessibility_tree_formatter.h",
165 "accessibility/accessibility_tree_formatter_blink.cc", 171 "accessibility/accessibility_tree_formatter_blink.cc",
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 "devtools/protocol/storage_handler.cc", 453 "devtools/protocol/storage_handler.cc",
448 "devtools/protocol/storage_handler.h", 454 "devtools/protocol/storage_handler.h",
449 "devtools/protocol/system_info_handler.cc", 455 "devtools/protocol/system_info_handler.cc",
450 "devtools/protocol/system_info_handler.h", 456 "devtools/protocol/system_info_handler.h",
451 "devtools/protocol/target_handler.cc", 457 "devtools/protocol/target_handler.cc",
452 "devtools/protocol/target_handler.h", 458 "devtools/protocol/target_handler.h",
453 "devtools/protocol/tethering_handler.cc", 459 "devtools/protocol/tethering_handler.cc",
454 "devtools/protocol/tethering_handler.h", 460 "devtools/protocol/tethering_handler.h",
455 "devtools/protocol/tracing_handler.cc", 461 "devtools/protocol/tracing_handler.cc",
456 "devtools/protocol/tracing_handler.h", 462 "devtools/protocol/tracing_handler.h",
463 "devtools/protocol_string.cc",
464 "devtools/protocol_string.h",
457 "devtools/render_frame_devtools_agent_host.cc", 465 "devtools/render_frame_devtools_agent_host.cc",
458 "devtools/render_frame_devtools_agent_host.h", 466 "devtools/render_frame_devtools_agent_host.h",
459 "devtools/service_worker_devtools_agent_host.cc", 467 "devtools/service_worker_devtools_agent_host.cc",
460 "devtools/service_worker_devtools_agent_host.h", 468 "devtools/service_worker_devtools_agent_host.h",
461 "devtools/service_worker_devtools_manager.cc", 469 "devtools/service_worker_devtools_manager.cc",
462 "devtools/service_worker_devtools_manager.h", 470 "devtools/service_worker_devtools_manager.h",
463 "devtools/shared_worker_devtools_agent_host.cc", 471 "devtools/shared_worker_devtools_agent_host.cc",
464 "devtools/shared_worker_devtools_agent_host.h", 472 "devtools/shared_worker_devtools_agent_host.h",
465 "devtools/shared_worker_devtools_manager.cc", 473 "devtools/shared_worker_devtools_manager.cc",
466 "devtools/shared_worker_devtools_manager.h", 474 "devtools/shared_worker_devtools_manager.h",
(...skipping 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1952 if (!is_component_build) { 1960 if (!is_component_build) {
1953 public_deps = [ 1961 public_deps = [
1954 ":browser", 1962 ":browser",
1955 ] 1963 ]
1956 } else { 1964 } else {
1957 public_deps = [ 1965 public_deps = [
1958 "//third_party/leveldatabase", 1966 "//third_party/leveldatabase",
1959 ] 1967 ]
1960 } 1968 }
1961 } 1969 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/BUILD.gn » ('j') | content/browser/devtools/protocol_string.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698