| 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/dialog_surface_lookup.cc", |
| 110 "android/dialog_surface_lookup.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 13 matching lines...) Expand all Loading... |
| 132 mojom("test_interfaces") { | 134 mojom("test_interfaces") { |
| 133 testonly = true | 135 testonly = true |
| 134 sources = [ | 136 sources = [ |
| 135 "traits_test_service.mojom", | 137 "traits_test_service.mojom", |
| 136 ] | 138 ] |
| 137 | 139 |
| 138 public_deps = [ | 140 public_deps = [ |
| 139 ":interfaces", | 141 ":interfaces", |
| 140 ] | 142 ] |
| 141 } | 143 } |
| OLD | NEW |