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 26 matching lines...) Expand all Loading... |
42 | 41 |
43 source_set("common") { | 42 source_set("common") { |
44 sources = [ | 43 sources = [ |
45 "ids.h", | 44 "ids.h", |
46 "types.h", | 45 "types.h", |
47 ] | 46 ] |
48 public_deps = [ | 47 public_deps = [ |
49 "//base", | 48 "//base", |
50 ] | 49 ] |
51 } | 50 } |
OLD | NEW |