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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 group("debugger") { | 7 group("debugger") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
11 "//sky/tools/debugger/prompt", | 11 "//sky/tools/debugger/prompt", |
12 ":sky_debugger", | 12 ":sky_debugger", |
13 ] | 13 ] |
14 } | 14 } |
15 | 15 |
16 shared_library("sky_debugger") { | 16 shared_library("sky_debugger") { |
17 sources = [ | 17 sources = [ |
18 "debugger.cc", | 18 "debugger.cc", |
19 "debugger.h", | 19 "debugger.h", |
| 20 "focus_rules.cc", |
| 21 "focus_rules.h", |
20 "main.cc", | 22 "main.cc", |
21 "navigator_host_impl.cc", | 23 "navigator_host_impl.cc", |
22 "navigator_host_impl.h", | 24 "navigator_host_impl.h", |
23 ] | 25 ] |
24 | 26 |
25 deps = [ | 27 deps = [ |
26 "//base", | 28 "//base", |
27 "//mojo/application", | 29 "//mojo/application", |
28 "//mojo/converters/geometry", | 30 "//mojo/converters/geometry", |
29 "//mojo/converters/input_events", | 31 "//mojo/converters/input_events", |
30 "//mojo/public/c/system:for_shared_library", | 32 "//mojo/public/c/system:for_shared_library", |
31 "//mojo/public/cpp/bindings", | 33 "//mojo/public/cpp/bindings", |
32 "//mojo/public/cpp/utility", | 34 "//mojo/public/cpp/utility", |
33 "//mojo/services/public/cpp/view_manager", | 35 "//mojo/services/public/cpp/view_manager", |
34 "//mojo/services/public/interfaces/input_events:input_events", | 36 "//mojo/services/public/interfaces/input_events:input_events", |
35 "//mojo/services/public/interfaces/navigation", | 37 "//mojo/services/public/interfaces/navigation", |
36 "//mojo/services/window_manager:lib", | 38 "//mojo/services/window_manager:lib", |
37 "//sky/viewer:bindings", | 39 "//sky/viewer:bindings", |
| 40 "//ui/aura:aura", |
| 41 "//ui/wm:wm", |
38 ":bindings", | 42 ":bindings", |
39 ] | 43 ] |
40 } | 44 } |
41 | 45 |
42 mojom("bindings") { | 46 mojom("bindings") { |
43 sources = [ | 47 sources = [ |
44 "debugger.mojom", | 48 "debugger.mojom", |
45 ] | 49 ] |
46 } | 50 } |
OLD | NEW |