| 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 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") |
| 6 | 6 |
| 7 mojo_sdk_source_set("cpp") { | 7 mojo_sdk_source_set("cpp") { |
| 8 restrict_external_deps = false | 8 restrict_external_deps = false |
| 9 sources = [ | 9 sources = [ |
| 10 "args.h", | 10 "args.h", |
| 11 "lib/args.cc", | 11 "lib/args.cc", |
| 12 "lib/scoped_view_ptr.cc", | 12 "lib/scoped_view_ptr.cc", |
| 13 "lib/view.cc", | 13 "lib/view.cc", |
| 14 "lib/view_manager_client_impl.cc", | |
| 15 "lib/view_manager_client_impl.h", | |
| 16 "lib/view_manager_delegate.cc", | 14 "lib/view_manager_delegate.cc", |
| 17 "lib/view_manager_init.cc", | 15 "lib/view_manager_init.cc", |
| 18 "lib/view_observer.cc", | 16 "lib/view_observer.cc", |
| 19 "lib/view_private.cc", | 17 "lib/view_private.cc", |
| 20 "lib/view_private.h", | 18 "lib/view_private.h", |
| 19 "lib/view_tree_client_impl.cc", |
| 20 "lib/view_tree_client_impl.h", |
| 21 "scoped_view_ptr.h", | 21 "scoped_view_ptr.h", |
| 22 "view.h", | 22 "view.h", |
| 23 "view_manager.h", | 23 "view_manager.h", |
| 24 "view_manager_delegate.h", | 24 "view_manager_delegate.h", |
| 25 "view_manager_init.h", | 25 "view_manager_init.h", |
| 26 "view_observer.h", | 26 "view_observer.h", |
| 27 "view_property.h", | 27 "view_property.h", |
| 28 "view_tracker.cc", | 28 "view_tracker.cc", |
| 29 "view_tracker.h", | 29 "view_tracker.h", |
| 30 ] | 30 ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 source_set("common") { | 53 source_set("common") { |
| 54 sources = [ | 54 sources = [ |
| 55 "keys.cc", | 55 "keys.cc", |
| 56 "keys.h", | 56 "keys.h", |
| 57 "types.h", | 57 "types.h", |
| 58 "util.h", | 58 "util.h", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| OLD | NEW |