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

Side by Side Diff: ui/keyboard/BUILD.gn

Issue 584683002: Improve GN header checker, make //ui pass. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the adnoid Created 6 years, 3 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 6
7 component("keyboard") { 7 component("keyboard") {
8 sources = [ 8 sources = [
9 "keyboard.cc", 9 "keyboard.cc",
10 "keyboard.h", 10 "keyboard.h",
(...skipping 13 matching lines...) Expand all
24 "keyboard_util.h", 24 "keyboard_util.h",
25 ] 25 ]
26 26
27 defines = [ "KEYBOARD_IMPLEMENTATION" ] 27 defines = [ "KEYBOARD_IMPLEMENTATION" ]
28 28
29 deps = [ 29 deps = [
30 ":resources", 30 ":resources",
31 "//base", 31 "//base",
32 "//base/third_party/dynamic_annotations", 32 "//base/third_party/dynamic_annotations",
33 "//content/public/browser", 33 "//content/public/browser",
34 "//content/public/common",
34 "//url", 35 "//url",
35 "//ui/aura", 36 "//ui/aura",
36 "//ui/base", 37 "//ui/base",
37 "//ui/compositor", 38 "//ui/compositor",
38 "//ui/events", 39 "//ui/events",
39 "//ui/gfx", 40 "//ui/gfx",
40 "//ui/gfx/geometry", 41 "//ui/gfx/geometry",
41 "//ui/keyboard/webui", 42 "//ui/keyboard/webui",
42 "//ui/wm", 43 "//ui/wm",
43 ] 44 ]
(...skipping 19 matching lines...) Expand all
63 ] 64 ]
64 65
65 deps = [ 66 deps = [
66 "webui:mojo_bindings" 67 "webui:mojo_bindings"
67 ] 68 ]
68 } 69 }
69 70
70 copy("resources") { 71 copy("resources") {
71 sources = [ "$target_gen_dir/keyboard_resources.pak" ] 72 sources = [ "$target_gen_dir/keyboard_resources.pak" ]
72 outputs = [ "$root_out_dir/keyboard_resources.pak" ] 73 outputs = [ "$root_out_dir/keyboard_resources.pak" ]
73 deps = [ ":resources_grit" ] 74 public_deps = [ ":resources_grit" ]
74 forward_dependent_configs_from = deps
75 } 75 }
76 76
77 test("keyboard_unittests") { 77 test("keyboard_unittests") {
78 sources = [ 78 sources = [
79 "test/run_all_unittests.cc", 79 "test/run_all_unittests.cc",
80 "keyboard_controller_unittest.cc", 80 "keyboard_controller_unittest.cc",
81 ] 81 ]
82 82
83 deps = [ 83 deps = [
84 ":keyboard", 84 ":keyboard",
85 "//base", 85 "//base",
86 "//base/allocator", 86 "//base/allocator",
87 "//base/test:test_support", 87 "//base/test:test_support",
88 "//content", 88 "//content",
89 "//skia", 89 "//skia",
90 "//testing/gtest", 90 "//testing/gtest",
91 "//ui/aura",
92 "//ui/aura:test_support", 91 "//ui/aura:test_support",
93 "//ui/base", 92 "//ui/base:test_support",
94 "//ui/compositor",
95 "//ui/compositor:test_support", 93 "//ui/compositor:test_support",
94 "//ui/events:test_support",
96 "//ui/gfx", 95 "//ui/gfx",
97 "//ui/gfx/geometry", 96 "//ui/gfx/geometry",
98 "//ui/gl", 97 "//ui/gl",
99 "//ui/resources:ui_test_pak", 98 "//ui/resources:ui_test_pak",
100 "//ui/wm", 99 "//ui/wm",
101 "//url", 100 "//url",
102 ] 101 ]
103 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698