| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("arc") { | 8 static_library("arc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "arc_bridge_host_impl.cc", | 10 "arc_bridge_host_impl.cc", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ":arc_bindings", | 123 ":arc_bindings", |
| 124 ] | 124 ] |
| 125 } | 125 } |
| 126 | 126 |
| 127 # TODO(crbug.com/662510): Remove this altogether. | 127 # TODO(crbug.com/662510): Remove this altogether. |
| 128 mojom("arc_bindings_old_types") { | 128 mojom("arc_bindings_old_types") { |
| 129 sources = [ | 129 sources = [ |
| 130 "common/bitmap.mojom", | 130 "common/bitmap.mojom", |
| 131 "common/bluetooth.mojom", | 131 "common/bluetooth.mojom", |
| 132 "common/net.mojom", | 132 "common/net.mojom", |
| 133 "common/video_accelerator.mojom", | |
| 134 ] | 133 ] |
| 135 | 134 |
| 136 public_deps = [ | 135 public_deps = [ |
| 137 "//mojo/common:common_custom_types", | 136 "//mojo/common:common_custom_types", |
| 138 "//ui/gfx/geometry/mojo", | 137 "//ui/gfx/geometry/mojo", |
| 139 ] | 138 ] |
| 140 | 139 |
| 141 use_new_wrapper_types = false | 140 use_new_wrapper_types = false |
| 142 } | 141 } |
| 143 | 142 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 160 "common/obb_mounter.mojom", | 159 "common/obb_mounter.mojom", |
| 161 "common/policy.mojom", | 160 "common/policy.mojom", |
| 162 "common/power.mojom", | 161 "common/power.mojom", |
| 163 "common/print.mojom", | 162 "common/print.mojom", |
| 164 "common/process.mojom", | 163 "common/process.mojom", |
| 165 "common/scale_factor.mojom", | 164 "common/scale_factor.mojom", |
| 166 "common/screen_rect.mojom", | 165 "common/screen_rect.mojom", |
| 167 "common/storage_manager.mojom", | 166 "common/storage_manager.mojom", |
| 168 "common/tts.mojom", | 167 "common/tts.mojom", |
| 169 "common/video.mojom", | 168 "common/video.mojom", |
| 169 "common/video_accelerator.mojom", |
| 170 "common/wallpaper.mojom", | 170 "common/wallpaper.mojom", |
| 171 ] | 171 ] |
| 172 | 172 |
| 173 public_deps = [ | 173 public_deps = [ |
| 174 ":arc_bindings_old_types", | 174 ":arc_bindings_old_types", |
| 175 "//mojo/common:common_custom_types", | 175 "//mojo/common:common_custom_types", |
| 176 ] | 176 ] |
| 177 } | 177 } |
| 178 | 178 |
| 179 static_library("arc_test_support") { | 179 static_library("arc_test_support") { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//testing/gtest", | 231 "//testing/gtest", |
| 232 "//ui/aura", | 232 "//ui/aura", |
| 233 "//ui/aura:test_support", | 233 "//ui/aura:test_support", |
| 234 "//ui/base:test_support", | 234 "//ui/base:test_support", |
| 235 "//ui/base/ime", | 235 "//ui/base/ime", |
| 236 "//ui/events", | 236 "//ui/events", |
| 237 "//ui/events:dom_keycode_converter", | 237 "//ui/events:dom_keycode_converter", |
| 238 "//url:url", | 238 "//url:url", |
| 239 ] | 239 ] |
| 240 } | 240 } |
| OLD | NEW |