| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| source_set("cpp") { |
| sources = [ |
| "lib/view.cc", |
| "lib/view_manager_client_factory.cc", |
| "lib/view_manager_client_impl.cc", |
| "lib/view_manager_client_impl.h", |
| "lib/view_manager_context.cc", |
| "lib/view_observer.cc", |
| "lib/view_private.cc", |
| "lib/view_private.h", |
| "view.h", |
| "view_manager.h", |
| "view_manager_client_factory.h", |
| "view_manager_context.h", |
| "view_manager_delegate.h", |
| "view_observer.h", |
| "view_property.h", |
| "view_tracker.cc", |
| "view_tracker.h", |
| ] |
| |
| public_deps = [ |
| ":common", |
| ] |
| deps = [ |
| "//base", |
| "//mojo/public/c/gles2:headers", |
| "//mojo/public/cpp/application", |
| "//mojo/public/cpp/bindings:bindings", |
| "//mojo/public/interfaces/application", |
| "//mojo/services/geometry/public/interfaces", |
| "//mojo/services/public/interfaces/input_events:input_events", |
| "//mojo/services/surfaces/public/interfaces:surface_id", |
| "//mojo/services/view_manager/public/interfaces", |
| "//mojo/services/window_manager/public/interfaces", |
| ] |
| } |
| |
| source_set("common") { |
| sources = [ |
| "types.h", |
| ] |
| } |