| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/ui.gni") | |
| 6 | |
| 7 source_set("ui") { | |
| 8 sources = [ | |
| 9 "blimp_layout_manager.cc", | |
| 10 "blimp_layout_manager.h", | |
| 11 "blimp_screen.cc", | |
| 12 "blimp_screen.h", | |
| 13 "blimp_window_tree_host.cc", | |
| 14 "blimp_window_tree_host.h", | |
| 15 ] | |
| 16 | |
| 17 deps = [ | |
| 18 "//blimp/common:blimp_common", | |
| 19 "//cc", | |
| 20 "//cc/surfaces", | |
| 21 "//ui/aura", | |
| 22 "//ui/compositor", | |
| 23 "//ui/events", | |
| 24 "//ui/gfx", | |
| 25 "//ui/platform_window", | |
| 26 "//ui/platform_window", | |
| 27 "//ui/platform_window/stub/", | |
| 28 ] | |
| 29 } | |
| OLD | NEW |