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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 | 6 |
7 component("keyboard") { | 7 component("keyboard") { |
8 sources = [ | 8 sources = [ |
9 "keyboard.cc", | 9 "keyboard.cc", |
10 "keyboard.h", | 10 "keyboard.h", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "//url", | 34 "//url", |
35 "//ui/aura", | 35 "//ui/aura", |
36 "//ui/base", | 36 "//ui/base", |
37 "//ui/compositor", | 37 "//ui/compositor", |
38 "//ui/events", | 38 "//ui/events", |
39 "//ui/gfx", | 39 "//ui/gfx", |
40 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
41 "//ui/keyboard/webui", | 41 "//ui/keyboard/webui", |
42 "//ui/wm", | 42 "//ui/wm", |
43 ] | 43 ] |
| 44 |
| 45 # http://crbug.com/408651 Include cycle between this target and the "webui" |
| 46 # sub-target. |
| 47 allow_circular_includes_from = [ "//ui/keyboard/webui" ] |
44 } | 48 } |
45 | 49 |
46 grit("resources_grit") { | 50 grit("resources_grit") { |
47 source = "keyboard_resources.grd" | 51 source = "keyboard_resources.grd" |
48 outputs = [ | 52 outputs = [ |
49 "grit/keyboard_resources.h", | 53 "grit/keyboard_resources.h", |
50 "grit/keyboard_resources_map.h", | 54 "grit/keyboard_resources_map.h", |
51 "keyboard_resources.pak", | 55 "keyboard_resources.pak", |
52 "keyboard_resources.rc", | 56 "keyboard_resources.rc", |
53 ] | 57 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 "//ui/compositor", | 94 "//ui/compositor", |
91 "//ui/compositor:test_support", | 95 "//ui/compositor:test_support", |
92 "//ui/gfx", | 96 "//ui/gfx", |
93 "//ui/gfx/geometry", | 97 "//ui/gfx/geometry", |
94 "//ui/gl", | 98 "//ui/gl", |
95 "//ui/resources:ui_test_pak", | 99 "//ui/resources:ui_test_pak", |
96 "//ui/wm", | 100 "//ui/wm", |
97 "//url", | 101 "//url", |
98 ] | 102 ] |
99 } | 103 } |
OLD | NEW |