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

Side by Side Diff: components/view_manager/BUILD.gn

Issue 1142323003: Remove duplicate application cpp files in mojo/application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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
« no previous file with comments | « components/surfaces/main.cc ('k') | components/view_manager/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
8 8
9 mojo_native_application("view_manager") { 9 mojo_native_application("view_manager") {
10 sources = [ 10 sources = [
11 "main.cc", 11 "main.cc",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 ":view_manager_lib", 15 ":view_manager_lib",
16 "//base", 16 "//base",
17 "//components/view_manager/public/interfaces", 17 "//components/view_manager/public/interfaces",
18 "//mojo/application", 18 "//mojo/application/public/cpp",
19 "//mojo/converters/geometry", 19 "//mojo/converters/geometry",
20 "//mojo/environment:chromium",
21 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
22 ] 20 ]
23 } 21 }
24 22
25 source_set("view_manager_lib") { 23 source_set("view_manager_lib") {
26 sources = [ 24 sources = [
27 "access_policy.h", 25 "access_policy.h",
28 "access_policy_delegate.h", 26 "access_policy_delegate.h",
29 "animation_runner.cc", 27 "animation_runner.cc",
30 "animation_runner.h", 28 "animation_runner.h",
31 "animation_runner_observer.h", 29 "animation_runner_observer.h",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ] 70 ]
73 71
74 deps = [ 72 deps = [
75 "//base", 73 "//base",
76 "//cc/surfaces", 74 "//cc/surfaces",
77 "//cc/surfaces:surface_id", 75 "//cc/surfaces:surface_id",
78 "//components/surfaces/public/interfaces", 76 "//components/surfaces/public/interfaces",
79 "//components/view_manager/public/cpp:common", 77 "//components/view_manager/public/cpp:common",
80 "//components/view_manager/public/interfaces", 78 "//components/view_manager/public/interfaces",
81 "//components/view_manager/native_viewport", 79 "//components/view_manager/native_viewport",
82 "//mojo/application", 80 "//mojo/application/public/cpp",
83 "//mojo/application/public/interfaces",
84 "//mojo/common",
85 "//mojo/common:tracing_impl", 81 "//mojo/common:tracing_impl",
86 "//mojo/converters/geometry", 82 "//mojo/converters/geometry",
87 "//mojo/converters/input_events", 83 "//mojo/converters/input_events",
88 "//mojo/converters/surfaces", 84 "//mojo/converters/surfaces",
89 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
90 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 85 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
91 "//ui/mojo/geometry:interfaces", 86 "//ui/mojo/geometry:interfaces",
92 "//ui/mojo/events:interfaces", 87 "//ui/mojo/events:interfaces",
93 "//ui/gfx", 88 "//ui/gfx",
94 "//ui/gfx/geometry", 89 "//ui/gfx/geometry",
95 ] 90 ]
96 91
97 data_deps = [ "//components/surfaces" ] 92 data_deps = [ "//components/surfaces" ]
98 } 93 }
99 94
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "view_manager_client_apptest.cc", 159 "view_manager_client_apptest.cc",
165 "view_manager_service_apptest.cc", 160 "view_manager_service_apptest.cc",
166 ] 161 ]
167 162
168 deps = [ 163 deps = [
169 ":test_support", 164 ":test_support",
170 "//base", 165 "//base",
171 "//base/test:test_config", 166 "//base/test:test_config",
172 "//components/view_manager/public/cpp", 167 "//components/view_manager/public/cpp",
173 "//components/view_manager/public/interfaces", 168 "//components/view_manager/public/interfaces",
174 "//mojo/application", 169 "//mojo/application/public/cpp:test_support",
175 "//mojo/application:test_support",
176 "//mojo/common",
177 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
178 "//ui/mojo/geometry:interfaces", 170 "//ui/mojo/geometry:interfaces",
179 "//ui/mojo/geometry:util", 171 "//ui/mojo/geometry:util",
180 ] 172 ]
181 173
182 data_deps = [ ":view_manager" ] 174 data_deps = [ ":view_manager" ]
183 } 175 }
OLDNEW
« no previous file with comments | « components/surfaces/main.cc ('k') | components/view_manager/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698