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

Side by Side Diff: mojo/services/view_manager/BUILD.gn

Issue 720883003: Adds a CloneAndAnimate function to WindowManagerInternalClient (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add GetView(ClonedViewId) coverage Created 6 years, 1 month 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("//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 7
8 mojo_native_application("view_manager") { 8 mojo_native_application("view_manager") {
9 sources = [ 9 sources = [
10 "main.cc", 10 "main.cc",
11 "view_manager_app.cc", 11 "view_manager_app.cc",
12 "view_manager_app.h", 12 "view_manager_app.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 ":view_manager_lib", 16 ":view_manager_lib",
17 "//base",
17 "//mojo/application", 18 "//mojo/application",
18 "//mojo/environment:chromium", 19 "//mojo/environment:chromium",
19 "//mojo/public/c/system:for_shared_library", 20 "//mojo/public/c/system:for_shared_library",
21 "//mojo/public/cpp/bindings:bindings",
22 "//mojo/services/public/interfaces/window_manager",
20 ] 23 ]
21 } 24 }
22 25
23 source_set("view_manager_lib") { 26 source_set("view_manager_lib") {
24 sources = [ 27 sources = [
25 "access_policy.h", 28 "access_policy.h",
26 "access_policy_delegate.h", 29 "access_policy_delegate.h",
27 "client_connection.cc", 30 "client_connection.cc",
28 "client_connection.h", 31 "client_connection.h",
29 "connection_manager.cc", 32 "connection_manager.cc",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 testonly = true 73 testonly = true
71 74
72 sources = [ 75 sources = [
73 "test_change_tracker.cc", 76 "test_change_tracker.cc",
74 "test_change_tracker.h", 77 "test_change_tracker.h",
75 ] 78 ]
76 79
77 deps = [ 80 deps = [
78 "//base", 81 "//base",
79 "//mojo/common", 82 "//mojo/common",
83 "//mojo/public/cpp/bindings:bindings",
80 "//mojo/services/public/interfaces/geometry", 84 "//mojo/services/public/interfaces/geometry",
81 "//mojo/services/public/interfaces/view_manager", 85 "//mojo/services/public/interfaces/view_manager",
82 ] 86 ]
83 } 87 }
84 88
85 test("view_manager_unittests") { 89 test("view_manager_unittests") {
86 sources = [ 90 sources = [
87 "view_manager_unittest.cc", 91 "view_manager_unittest.cc",
88 ] 92 ]
89 93
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "//mojo/application", 164 "//mojo/application",
161 "//mojo/application:test_support", 165 "//mojo/application:test_support",
162 "//mojo/common", 166 "//mojo/common",
163 "//mojo/public/c/system:for_shared_library", 167 "//mojo/public/c/system:for_shared_library",
164 "//mojo/public/cpp/bindings", 168 "//mojo/public/cpp/bindings",
165 "//mojo/services/public/interfaces/geometry", 169 "//mojo/services/public/interfaces/geometry",
166 "//mojo/services/public/interfaces/view_manager", 170 "//mojo/services/public/interfaces/view_manager",
167 "//mojo/services/public/interfaces/window_manager", 171 "//mojo/services/public/interfaces/window_manager",
168 ] 172 ]
169 } 173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698