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

Side by Side Diff: blimp/engine/app/ui/BUILD.gn

Issue 1842593002: [Blimp Engine] Adds a WindowTreeClient so that popup will have non-null paren… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698