Revert "Reland c91b178b07b0d - Delete dead signin code (SigninGlobalError)"
[chromium-blink-merge.git] / components / view_manager / public / cpp / BUILD.gn
blob337f85e7d1a959d1d5f9725f4a7b97162a73fe4c
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.
5 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni")
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_manager_client_factory.cc",
15     "lib/view_manager_client_impl.cc",
16     "lib/view_manager_client_impl.h",
17     "lib/view_manager_delegate.cc",
18     "lib/view_manager_init.cc",
19     "lib/view_observer.cc",
20     "lib/view_private.cc",
21     "lib/view_private.h",
22     "scoped_view_ptr.h",
23     "view.h",
24     "view_manager.h",
25     "view_manager_client_factory.h",
26     "view_manager_delegate.h",
27     "view_manager_init.h",
28     "view_observer.h",
29     "view_property.h",
30     "view_tracker.cc",
31     "view_tracker.h",
32   ]
34   public_deps = [
35     ":common",
36     "../interfaces",
37     "//mojo/services/network/public/interfaces",
38   ]
40   deps = [
41     "//mojo/application/public/cpp",
42     "//mojo/application/public/interfaces",
43     "//ui/mojo/events:interfaces",
44     "//ui/mojo/geometry:interfaces",
45     "//base",
46   ]
48   mojo_sdk_deps = [
49     "mojo/public/c/gles2:headers",
50     "mojo/public/cpp/bindings:bindings",
51     "mojo/public/cpp/system",
52   ]
55 source_set("common") {
56   sources = [
57     "keys.cc",
58     "keys.h",
59     "types.h",
60     "util.h",
61   ]