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

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

Issue 2734123004: add a new set of commands to resize and position windows (Closed)
Patch Set: modify protocol Created 3 years, 9 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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "//ui/touch_selection", 160 "//ui/touch_selection",
161 "//v8:v8_version", 161 "//v8:v8_version",
162 ] 162 ]
163 163
164 public_deps = [ 164 public_deps = [
165 "//media/mojo/interfaces:remoting", 165 "//media/mojo/interfaces:remoting",
166 "//third_party/leveldatabase", 166 "//third_party/leveldatabase",
167 ] 167 ]
168 168
169 sources = [ 169 sources = [
170 "$target_gen_dir/devtools/protocol/browser.cc",
171 "$target_gen_dir/devtools/protocol/browser.h",
170 "$target_gen_dir/devtools/protocol/dom.cc", 172 "$target_gen_dir/devtools/protocol/dom.cc",
171 "$target_gen_dir/devtools/protocol/dom.h", 173 "$target_gen_dir/devtools/protocol/dom.h",
172 "$target_gen_dir/devtools/protocol/emulation.cc", 174 "$target_gen_dir/devtools/protocol/emulation.cc",
173 "$target_gen_dir/devtools/protocol/emulation.h", 175 "$target_gen_dir/devtools/protocol/emulation.h",
174 "$target_gen_dir/devtools/protocol/forward.h", 176 "$target_gen_dir/devtools/protocol/forward.h",
175 "$target_gen_dir/devtools/protocol/input.cc", 177 "$target_gen_dir/devtools/protocol/input.cc",
176 "$target_gen_dir/devtools/protocol/input.h", 178 "$target_gen_dir/devtools/protocol/input.h",
177 "$target_gen_dir/devtools/protocol/inspector.cc", 179 "$target_gen_dir/devtools/protocol/inspector.cc",
178 "$target_gen_dir/devtools/protocol/inspector.h", 180 "$target_gen_dir/devtools/protocol/inspector.h",
179 "$target_gen_dir/devtools/protocol/io.cc", 181 "$target_gen_dir/devtools/protocol/io.cc",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 "devtools/devtools_io_context.cc", 476 "devtools/devtools_io_context.cc",
475 "devtools/devtools_io_context.h", 477 "devtools/devtools_io_context.h",
476 "devtools/devtools_manager.cc", 478 "devtools/devtools_manager.cc",
477 "devtools/devtools_manager.h", 479 "devtools/devtools_manager.h",
478 "devtools/devtools_session.cc", 480 "devtools/devtools_session.cc",
479 "devtools/devtools_session.h", 481 "devtools/devtools_session.h",
480 "devtools/forwarding_agent_host.cc", 482 "devtools/forwarding_agent_host.cc",
481 "devtools/forwarding_agent_host.h", 483 "devtools/forwarding_agent_host.h",
482 "devtools/page_navigation_throttle.cc", 484 "devtools/page_navigation_throttle.cc",
483 "devtools/page_navigation_throttle.h", 485 "devtools/page_navigation_throttle.h",
486 "devtools/protocol/browser_handler.cc",
487 "devtools/protocol/browser_handler.h",
484 "devtools/protocol/color_picker.cc", 488 "devtools/protocol/color_picker.cc",
485 "devtools/protocol/color_picker.h", 489 "devtools/protocol/color_picker.h",
486 "devtools/protocol/devtools_domain_handler.cc", 490 "devtools/protocol/devtools_domain_handler.cc",
487 "devtools/protocol/devtools_domain_handler.h", 491 "devtools/protocol/devtools_domain_handler.h",
488 "devtools/protocol/dom_handler.cc", 492 "devtools/protocol/dom_handler.cc",
489 "devtools/protocol/dom_handler.h", 493 "devtools/protocol/dom_handler.h",
490 "devtools/protocol/emulation_handler.cc", 494 "devtools/protocol/emulation_handler.cc",
491 "devtools/protocol/emulation_handler.h", 495 "devtools/protocol/emulation_handler.h",
492 "devtools/protocol/input_handler.cc", 496 "devtools/protocol/input_handler.cc",
493 "devtools/protocol/input_handler.h", 497 "devtools/protocol/input_handler.h",
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after
2056 if (!is_component_build) { 2060 if (!is_component_build) {
2057 public_deps = [ 2061 public_deps = [
2058 ":browser", 2062 ":browser",
2059 ] 2063 ]
2060 } else { 2064 } else {
2061 public_deps = [ 2065 public_deps = [
2062 "//third_party/leveldatabase", 2066 "//third_party/leveldatabase",
2063 ] 2067 ]
2064 } 2068 }
2065 } 2069 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698