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

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

Issue 581273003: Make mojo/services pass in "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ui
Patch Set: no brackets Created 6 years, 3 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
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 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib
6 source_set("view_manager") { 6 source_set("view_manager") {
7 sources = [ 7 sources = [
8 "lib/bitmap_uploader.cc", 8 "lib/bitmap_uploader.cc",
9 "lib/bitmap_uploader.h", 9 "lib/bitmap_uploader.h",
10 "lib/view.cc", 10 "lib/view.cc",
11 "lib/view_manager_client_factory.cc", 11 "lib/view_manager_client_factory.cc",
12 "lib/view_manager_client_impl.cc", 12 "lib/view_manager_client_impl.cc",
13 "lib/view_manager_client_impl.h", 13 "lib/view_manager_client_impl.h",
14 "lib/view_observer.cc", 14 "lib/view_observer.cc",
15 "lib/view_private.cc", 15 "lib/view_private.cc",
16 "lib/view_private.h", 16 "lib/view_private.h",
17 "view.h", 17 "view.h",
18 "view_manager.h", 18 "view_manager.h",
19 "view_manager_client_factory.h", 19 "view_manager_client_factory.h",
20 "view_manager_delegate.h", 20 "view_manager_delegate.h",
21 "view_observer.h", 21 "view_observer.h",
22 "window_manager_delegate.h", 22 "window_manager_delegate.h",
23 ] 23 ]
24 24
25 public_deps = [
26 ":common",
27 "//skia",
28 ]
25 deps = [ 29 deps = [
26 ":common",
27 "//base", 30 "//base",
28 "//cc/surfaces", 31 "//cc/surfaces",
29 "//gpu", 32 "//gpu",
30 "//mojo/application", 33 "//mojo/application",
34 "//mojo/public/cpp/bindings:bindings",
31 "//mojo/public/gles2:for_shared_library", 35 "//mojo/public/gles2:for_shared_library",
32 "//mojo/public/interfaces/application", 36 "//mojo/public/interfaces/application",
33 "//mojo/services/public/cpp/geometry", 37 "//mojo/services/public/cpp/geometry",
34 "//mojo/services/public/cpp/surfaces", 38 "//mojo/services/public/cpp/surfaces",
35 "//mojo/services/public/interfaces/geometry", 39 "//mojo/services/public/interfaces/geometry",
36 "//mojo/services/public/interfaces/gpu", 40 "//mojo/services/public/interfaces/gpu",
41 "//mojo/services/public/interfaces/input_events:input_events",
42 "//mojo/services/public/interfaces/surfaces:surface_id",
43 "//mojo/services/public/interfaces/surfaces:surfaces",
37 "//mojo/services/public/interfaces/view_manager", 44 "//mojo/services/public/interfaces/view_manager",
38 "//mojo/services/public/interfaces/window_manager", 45 "//mojo/services/public/interfaces/window_manager",
39 "//skia", 46 "//skia",
40 "//ui/events", 47 "//ui/events",
41 "//ui/gfx", 48 "//ui/gfx",
42 "//ui/gfx/geometry", 49 "//ui/gfx/geometry",
43 ] 50 ]
44
45 forward_dependent_configs_from = [ "//skia" ]
46 } 51 }
47 52
48 source_set("common") { 53 source_set("common") {
49 sources = [ 54 sources = [
50 "types.h" 55 "types.h"
51 ] 56 ]
57 public_deps = [
58 "//base",
59 ]
52 } 60 }
OLDNEW
« no previous file with comments | « mojo/services/public/cpp/surfaces/BUILD.gn ('k') | mojo/services/public/cpp/view_manager/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698