OLD | NEW |
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 | |
6 source_set("view_manager") { | 5 source_set("view_manager") { |
7 sources = [ | 6 sources = [ |
8 "lib/view.cc", | 7 "lib/view.cc", |
9 "lib/view_manager_client_factory.cc", | 8 "lib/view_manager_client_factory.cc", |
10 "lib/view_manager_client_impl.cc", | 9 "lib/view_manager_client_impl.cc", |
11 "lib/view_manager_client_impl.h", | 10 "lib/view_manager_client_impl.h", |
12 "lib/view_manager_context.cc", | 11 "lib/view_manager_context.cc", |
13 "lib/view_observer.cc", | 12 "lib/view_observer.cc", |
14 "lib/view_private.cc", | 13 "lib/view_private.cc", |
15 "lib/view_private.h", | 14 "lib/view_private.h", |
(...skipping 24 matching lines...) Expand all Loading... |
40 | 39 |
41 source_set("common") { | 40 source_set("common") { |
42 sources = [ | 41 sources = [ |
43 "ids.h", | 42 "ids.h", |
44 "types.h", | 43 "types.h", |
45 ] | 44 ] |
46 public_deps = [ | 45 public_deps = [ |
47 "//base", | 46 "//base", |
48 ] | 47 ] |
49 } | 48 } |
OLD | NEW |