OLD | NEW |
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "//build/config/compiler:wexit_time_destructors", | 61 "//build/config/compiler:wexit_time_destructors", |
62 "//build/config:precompiled_headers", | 62 "//build/config:precompiled_headers", |
63 "//third_party/WebKit/public:debug_devtools", | 63 "//third_party/WebKit/public:debug_devtools", |
64 ] | 64 ] |
65 | 65 |
66 deps = [ | 66 deps = [ |
67 ":devtools_protocol_constants", | 67 ":devtools_protocol_constants", |
68 "//base", | 68 "//base", |
69 "//content/public/browser", | 69 "//content/public/browser", |
70 "//net", | 70 "//net", |
| 71 "//ui/events:dom_keycode_converter", |
71 ] | 72 ] |
72 | 73 |
73 if (!is_android) { | 74 if (!is_android) { |
74 deps += [ | 75 deps += [ |
75 "//chrome:extra_resources", | 76 "//chrome:extra_resources", |
76 "//chrome:resources", | 77 "//chrome:resources", |
77 "//chrome:strings", | 78 "//chrome:strings", |
78 "//chrome/app/theme:theme_resources", | 79 "//chrome/app/theme:theme_resources", |
79 "//chrome/common/extensions/api", | 80 "//chrome/common/extensions/api", |
80 "//components/devtools_http_handler", | 81 "//components/devtools_http_handler", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "remote_debugging_server.h", | 137 "remote_debugging_server.h", |
137 ] | 138 ] |
138 if (enable_service_discovery) { | 139 if (enable_service_discovery) { |
139 sources += [ | 140 sources += [ |
140 "device/cast_device_provider.cc", | 141 "device/cast_device_provider.cc", |
141 "device/cast_device_provider.h", | 142 "device/cast_device_provider.h", |
142 ] | 143 ] |
143 } | 144 } |
144 } | 145 } |
145 } | 146 } |
OLD | NEW |