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

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

Issue 1344573002: Mandoline: Rename components/view_manager to components/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 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
« no previous file with comments | « components/view_manager/main.cc ('k') | components/view_manager/public/cpp/args.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni")
6
7 mojo_sdk_source_set("cpp") {
8 restrict_external_deps = false
9 sources = [
10 "args.h",
11 "lib/args.cc",
12 "lib/scoped_view_ptr.cc",
13 "lib/view.cc",
14 "lib/view_observer.cc",
15 "lib/view_private.cc",
16 "lib/view_private.h",
17 "lib/view_surface.cc",
18 "lib/view_tree_client_impl.cc",
19 "lib/view_tree_client_impl.h",
20 "lib/view_tree_delegate.cc",
21 "lib/view_tree_host_factory.cc",
22 "scoped_view_ptr.h",
23 "view.h",
24 "view_observer.h",
25 "view_property.h",
26 "view_surface.h",
27 "view_surface_client.h",
28 "view_tracker.cc",
29 "view_tracker.h",
30 "view_tree_connection.h",
31 "view_tree_delegate.h",
32 "view_tree_host_factory.h",
33 ]
34
35 public_deps = [
36 ":common",
37 "../interfaces",
38 "//mojo/services/network/public/interfaces",
39 ]
40
41 deps = [
42 "//mojo/application/public/cpp",
43 "//mojo/application/public/interfaces",
44 "//mojo/converters/surfaces",
45 "//ui/mojo/events:interfaces",
46 "//ui/mojo/geometry:interfaces",
47 "//base",
48 ]
49
50 mojo_sdk_deps = [
51 "mojo/public/c/gles2:headers",
52 "mojo/public/cpp/bindings:bindings",
53 "mojo/public/cpp/system",
54 ]
55 }
56
57 source_set("common") {
58 sources = [
59 "keys.cc",
60 "keys.h",
61 "types.h",
62 "util.h",
63 ]
64 }
OLDNEW
« no previous file with comments | « components/view_manager/main.cc ('k') | components/view_manager/public/cpp/args.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698