OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 group("common") { | 8 group("common") { |
9 if (is_component_build) { | 9 if (is_component_build) { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "//ui/base", | 99 "//ui/base", |
100 "//ui/events/ipc", | 100 "//ui/events/ipc", |
101 "//ui/gfx/ipc", | 101 "//ui/gfx/ipc", |
102 "//ui/gfx/ipc/geometry", | 102 "//ui/gfx/ipc/geometry", |
103 "//ui/gl", | 103 "//ui/gl", |
104 "//url/ipc:url_ipc", | 104 "//url/ipc:url_ipc", |
105 ] | 105 ] |
106 | 106 |
107 if (is_android) { | 107 if (is_android) { |
108 sources += [ | 108 sources += [ |
| 109 "android/scoped_surface_request_conduit.cc", |
| 110 "android/scoped_surface_request_conduit.h", |
109 "android/surface_texture_manager.cc", | 111 "android/surface_texture_manager.cc", |
110 "android/surface_texture_manager.h", | 112 "android/surface_texture_manager.h", |
111 "android/surface_texture_peer.cc", | 113 "android/surface_texture_peer.cc", |
112 "android/surface_texture_peer.h", | 114 "android/surface_texture_peer.h", |
113 ] | 115 ] |
114 } | 116 } |
115 | 117 |
116 if (use_ozone) { | 118 if (use_ozone) { |
117 deps += [ "//ui/ozone" ] | 119 deps += [ "//ui/ozone" ] |
118 } | 120 } |
(...skipping 18 matching lines...) Expand all Loading... |
137 mojom("test_interfaces") { | 139 mojom("test_interfaces") { |
138 testonly = true | 140 testonly = true |
139 sources = [ | 141 sources = [ |
140 "traits_test_service.mojom", | 142 "traits_test_service.mojom", |
141 ] | 143 ] |
142 | 144 |
143 public_deps = [ | 145 public_deps = [ |
144 ":interfaces", | 146 ":interfaces", |
145 ] | 147 ] |
146 } | 148 } |
OLD | NEW |