| 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 component("view_manager") { | 5 component("view_manager") { |
| 6 deps = [ | 6 deps = [ |
| 7 "//base", | 7 "//base", |
| 8 "//cc", | 8 "//cc", |
| 9 "//mojo/cc", | 9 "//mojo/cc", |
| 10 "//mojo/common", | 10 "//mojo/common", |
| 11 "//mojo/environment:chromium", | 11 "//mojo/environment:chromium", |
| 12 "//mojo/public/cpp/application:chromium", | 12 "//mojo/public/cpp/application", |
| 13 "//mojo/public/cpp/application:main_chromium", | 13 "//mojo/public/cpp/application:main_chromium", |
| 14 "//mojo/public/gles2", | 14 "//mojo/public/gles2", |
| 15 "//mojo/services/public/cpp/geometry", | 15 "//mojo/services/public/cpp/geometry", |
| 16 "//mojo/services/public/cpp/input_events", | 16 "//mojo/services/public/cpp/input_events", |
| 17 "//mojo/services/public/cpp/view_manager:common", | 17 "//mojo/services/public/cpp/view_manager:common", |
| 18 "//mojo/services/public/interfaces/geometry", | 18 "//mojo/services/public/interfaces/geometry", |
| 19 "//mojo/services/public/interfaces/input_events", | 19 "//mojo/services/public/interfaces/input_events", |
| 20 "//mojo/services/public/interfaces/native_viewport", | 20 "//mojo/services/public/interfaces/native_viewport", |
| 21 "//mojo/services/public/interfaces/view_manager", | 21 "//mojo/services/public/interfaces/view_manager", |
| 22 "//skia", | 22 "//skia", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "window_manager_access_policy.cc", | 66 "window_manager_access_policy.cc", |
| 67 "window_manager_access_policy.h", | 67 "window_manager_access_policy.h", |
| 68 "window_tree_host_impl.cc", | 68 "window_tree_host_impl.cc", |
| 69 "window_tree_host_impl.h", | 69 "window_tree_host_impl.h", |
| 70 ] | 70 ] |
| 71 | 71 |
| 72 if (is_component_build) { | 72 if (is_component_build) { |
| 73 deps += [ "//mojo/system" ] | 73 deps += [ "//mojo/system" ] |
| 74 } | 74 } |
| 75 } | 75 } |
| OLD | NEW |