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

Side by Side Diff: chrome/browser/devtools/BUILD.gn

Issue 2273063002: DevTools: remove DevToolsTargetDescriptor and its implementations, we are now based on devtools age… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined 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 if (!is_android) { 5 if (!is_android) {
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 } 8 }
9 9
10 action("devtools_protocol_constants") { 10 action("devtools_protocol_constants") {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "devtools_contents_resizing_strategy.cc", 111 "devtools_contents_resizing_strategy.cc",
112 "devtools_contents_resizing_strategy.h", 112 "devtools_contents_resizing_strategy.h",
113 "devtools_embedder_message_dispatcher.cc", 113 "devtools_embedder_message_dispatcher.cc",
114 "devtools_embedder_message_dispatcher.h", 114 "devtools_embedder_message_dispatcher.h",
115 "devtools_file_helper.cc", 115 "devtools_file_helper.cc",
116 "devtools_file_helper.h", 116 "devtools_file_helper.h",
117 "devtools_file_system_indexer.cc", 117 "devtools_file_system_indexer.cc",
118 "devtools_file_system_indexer.h", 118 "devtools_file_system_indexer.h",
119 "devtools_file_watcher.cc", 119 "devtools_file_watcher.cc",
120 "devtools_file_watcher.h", 120 "devtools_file_watcher.h",
121 "devtools_target_impl.cc",
122 "devtools_target_impl.h",
123 "devtools_targets_ui.cc", 121 "devtools_targets_ui.cc",
124 "devtools_targets_ui.h", 122 "devtools_targets_ui.h",
125 "devtools_toggle_action.cc", 123 "devtools_toggle_action.cc",
126 "devtools_toggle_action.h", 124 "devtools_toggle_action.h",
127 "devtools_ui_bindings.cc", 125 "devtools_ui_bindings.cc",
128 "devtools_ui_bindings.h", 126 "devtools_ui_bindings.h",
129 "devtools_window.cc", 127 "devtools_window.cc",
130 "devtools_window.h", 128 "devtools_window.h",
131 "global_confirm_info_bar.cc", 129 "global_confirm_info_bar.cc",
132 "global_confirm_info_bar.h", 130 "global_confirm_info_bar.h",
133 "remote_debugging_server.cc", 131 "remote_debugging_server.cc",
134 "remote_debugging_server.h", 132 "remote_debugging_server.h",
135 ] 133 ]
136 if (enable_service_discovery) { 134 if (enable_service_discovery) {
137 sources += [ 135 sources += [
138 "device/cast_device_provider.cc", 136 "device/cast_device_provider.cc",
139 "device/cast_device_provider.h", 137 "device/cast_device_provider.h",
140 ] 138 ]
141 } 139 }
142 } 140 }
143 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698