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

Side by Side Diff: content/browser/devtools/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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//third_party/inspector_protocol/inspector_protocol.gni") 6 import("//third_party/inspector_protocol/inspector_protocol.gni")
7 7
8 group("resources") { 8 group("resources") {
9 public_deps = [ 9 public_deps = [
10 ":devtools_resources", 10 ":devtools_resources",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 config_file = "protocol_config.json" 45 config_file = "protocol_config.json"
46 config_values = [ "protocol.path=$_blink_protocol_path" ] 46 config_values = [ "protocol.path=$_blink_protocol_path" ]
47 47
48 inputs = [ 48 inputs = [
49 "$root_gen_dir/blink/core/inspector/protocol.json", 49 "$root_gen_dir/blink/core/inspector/protocol.json",
50 config_file, 50 config_file,
51 ] 51 ]
52 52
53 # These are relative to $target_gen_dir. 53 # These are relative to $target_gen_dir.
54 outputs = [ 54 outputs = [
55 "protocol/browser.cc",
56 "protocol/browser.h",
55 "protocol/dom.cc", 57 "protocol/dom.cc",
56 "protocol/dom.h", 58 "protocol/dom.h",
57 "protocol/emulation.cc", 59 "protocol/emulation.cc",
58 "protocol/emulation.h", 60 "protocol/emulation.h",
59 "protocol/forward.h", 61 "protocol/forward.h",
60 "protocol/input.cc", 62 "protocol/input.cc",
61 "protocol/input.h", 63 "protocol/input.h",
62 "protocol/inspector.cc", 64 "protocol/inspector.cc",
63 "protocol/inspector.h", 65 "protocol/inspector.h",
64 "protocol/io.cc", 66 "protocol/io.cc",
(...skipping 19 matching lines...) Expand all
84 "protocol/system_info.cc", 86 "protocol/system_info.cc",
85 "protocol/system_info.h", 87 "protocol/system_info.h",
86 "protocol/target.cc", 88 "protocol/target.cc",
87 "protocol/target.h", 89 "protocol/target.h",
88 "protocol/tethering.cc", 90 "protocol/tethering.cc",
89 "protocol/tethering.h", 91 "protocol/tethering.h",
90 "protocol/tracing.cc", 92 "protocol/tracing.cc",
91 "protocol/tracing.h", 93 "protocol/tracing.h",
92 ] 94 ]
93 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698