OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 group("tests") { | 10 group("tests") { |
11 testonly = true | 11 testonly = true |
12 deps = [ | 12 deps = [ |
13 ":apptests", | 13 ":apptests", |
14 ] | 14 ] |
15 } | 15 } |
16 | 16 |
17 source_set("lib") { | 17 source_set("lib") { |
18 sources = [ | 18 sources = [ |
| 19 "accelerator_registrar_impl.cc", |
| 20 "accelerator_registrar_impl.h", |
19 "background_layout.cc", | 21 "background_layout.cc", |
20 "background_layout.h", | 22 "background_layout.h", |
21 "frame/caption_buttons/caption_button_types.h", | 23 "frame/caption_buttons/caption_button_types.h", |
22 "frame/caption_buttons/frame_caption_button.cc", | 24 "frame/caption_buttons/frame_caption_button.cc", |
23 "frame/caption_buttons/frame_caption_button.h", | 25 "frame/caption_buttons/frame_caption_button.h", |
24 "frame/caption_buttons/frame_caption_button_container_view.cc", | 26 "frame/caption_buttons/frame_caption_button_container_view.cc", |
25 "frame/caption_buttons/frame_caption_button_container_view.h", | 27 "frame/caption_buttons/frame_caption_button_container_view.h", |
26 "frame/default_header_painter.cc", | 28 "frame/default_header_painter.cc", |
27 "frame/default_header_painter.h", | 29 "frame/default_header_painter.h", |
28 "frame/frame_border_hit_test_controller.cc", | 30 "frame/frame_border_hit_test_controller.cc", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "//testing/gtest", | 167 "//testing/gtest", |
166 "//third_party/mojo/src/mojo/edk/system", | 168 "//third_party/mojo/src/mojo/edk/system", |
167 "//ui/base", | 169 "//ui/base", |
168 "//ui/events", | 170 "//ui/events", |
169 "//ui/gfx:test_support", | 171 "//ui/gfx:test_support", |
170 "//ui/gfx/geometry", | 172 "//ui/gfx/geometry", |
171 "//ui/mojo/geometry:interfaces", | 173 "//ui/mojo/geometry:interfaces", |
172 "//ui/mojo/geometry:util", | 174 "//ui/mojo/geometry:util", |
173 ] | 175 ] |
174 } | 176 } |
OLD | NEW |