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

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

Issue 495223002: GN build rules for all unit test targets in mojo/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix copyright header Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/public/cpp/view_manager/lib/BUILD.gn » ('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 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib
5 source_set("view_manager") { 6 source_set("view_manager") {
6 deps = [
7 ":common",
8 "//base",
9 "//mojo/public/cpp/application:chromium",
10 "//mojo/public/interfaces/application",
11 "//mojo/services/public/cpp/geometry",
12 "//mojo/services/public/interfaces/geometry",
13 "//mojo/services/public/interfaces/view_manager",
14 "//mojo/services/public/interfaces/window_manager",
15 "//skia",
16 "//ui/events",
17 "//ui/gfx",
18 "//ui/gfx/geometry",
19 ]
20
21 sources = [ 7 sources = [
22 "lib/view.cc", 8 "lib/view.cc",
23 "lib/view_manager_client_factory.cc", 9 "lib/view_manager_client_factory.cc",
24 "lib/view_manager_client_impl.cc", 10 "lib/view_manager_client_impl.cc",
25 "lib/view_manager_client_impl.h", 11 "lib/view_manager_client_impl.h",
26 "lib/view_observer.cc", 12 "lib/view_observer.cc",
27 "lib/view_private.cc", 13 "lib/view_private.cc",
28 "lib/view_private.h", 14 "lib/view_private.h",
29 "view.h", 15 "view.h",
30 "view_manager.h", 16 "view_manager.h",
31 "view_manager_client_factory.h", 17 "view_manager_client_factory.h",
32 "view_manager_delegate.h", 18 "view_manager_delegate.h",
33 "view_observer.h", 19 "view_observer.h",
34 "window_manager_delegate.h", 20 "window_manager_delegate.h",
35 ] 21 ]
22
23 deps = [
24 ":common",
25 "//base",
26 "//mojo/public/cpp/application:chromium",
27 "//mojo/public/interfaces/application",
28 "//mojo/services/public/cpp/geometry",
29 "//mojo/services/public/interfaces/geometry",
30 "//mojo/services/public/interfaces/view_manager",
31 "//mojo/services/public/interfaces/window_manager",
32 "//skia",
33 "//ui/events",
34 "//ui/gfx",
35 "//ui/gfx/geometry",
36 ]
37
38 forward_dependent_configs_from = [ "//skia" ]
36 } 39 }
37 40
38 source_set("common") { 41 source_set("common") {
39 sources = [ 42 sources = [
40 "types.h" 43 "types.h"
41 ] 44 ]
42 } 45 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/public/cpp/view_manager/lib/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698