| 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 | 6 |
| 7 source_set("ui") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "blimp_layout_manager.cc", | 9 "blimp_layout_manager.cc", |
| 10 "blimp_layout_manager.h", | 10 "blimp_layout_manager.h", |
| 11 "blimp_screen.cc", | 11 "blimp_screen.cc", |
| 12 "blimp_screen.h", | 12 "blimp_screen.h", |
| 13 "blimp_ui_context_factory.cc", | |
| 14 "blimp_ui_context_factory.h", | |
| 15 "blimp_window_tree_host.cc", | 13 "blimp_window_tree_host.cc", |
| 16 "blimp_window_tree_host.h", | 14 "blimp_window_tree_host.h", |
| 17 ] | 15 ] |
| 18 | 16 |
| 19 deps = [ | 17 deps = [ |
| 20 "//blimp/common:blimp_common", | 18 "//blimp/common:blimp_common", |
| 21 "//cc", | 19 "//cc", |
| 22 "//cc/surfaces", | 20 "//cc/surfaces", |
| 23 "//ui/aura", | 21 "//ui/aura", |
| 24 "//ui/compositor", | 22 "//ui/compositor", |
| 25 "//ui/events", | 23 "//ui/events", |
| 26 "//ui/gfx", | 24 "//ui/gfx", |
| 27 "//ui/platform_window", | 25 "//ui/platform_window", |
| 28 "//ui/platform_window", | 26 "//ui/platform_window", |
| 29 "//ui/platform_window/stub/", | 27 "//ui/platform_window/stub/", |
| 30 ] | 28 ] |
| 31 } | 29 } |
| OLD | NEW |