| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "common/net.mojom", | 141 "common/net.mojom", |
| 142 "common/notifications.mojom", | 142 "common/notifications.mojom", |
| 143 "common/obb_mounter.mojom", | 143 "common/obb_mounter.mojom", |
| 144 "common/policy.mojom", | 144 "common/policy.mojom", |
| 145 "common/power.mojom", | 145 "common/power.mojom", |
| 146 "common/print.mojom", | 146 "common/print.mojom", |
| 147 "common/process.mojom", | 147 "common/process.mojom", |
| 148 "common/scale_factor.mojom", | 148 "common/scale_factor.mojom", |
| 149 "common/screen_rect.mojom", | 149 "common/screen_rect.mojom", |
| 150 "common/storage_manager.mojom", | 150 "common/storage_manager.mojom", |
| 151 "common/trace.mojom", |
| 151 "common/tts.mojom", | 152 "common/tts.mojom", |
| 152 "common/video.mojom", | 153 "common/video.mojom", |
| 153 "common/video_accelerator.mojom", | 154 "common/video_accelerator.mojom", |
| 154 "common/wallpaper.mojom", | 155 "common/wallpaper.mojom", |
| 155 ] | 156 ] |
| 156 | 157 |
| 157 public_deps = [ | 158 public_deps = [ |
| 158 "//mojo/common:common_custom_types", | 159 "//mojo/common:common_custom_types", |
| 159 "//ui/gfx/geometry/mojo", | 160 "//ui/gfx/geometry/mojo", |
| 160 ] | 161 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "//testing/gtest", | 218 "//testing/gtest", |
| 218 "//ui/aura", | 219 "//ui/aura", |
| 219 "//ui/aura:test_support", | 220 "//ui/aura:test_support", |
| 220 "//ui/base:test_support", | 221 "//ui/base:test_support", |
| 221 "//ui/base/ime", | 222 "//ui/base/ime", |
| 222 "//ui/events", | 223 "//ui/events", |
| 223 "//ui/events:dom_keycode_converter", | 224 "//ui/events:dom_keycode_converter", |
| 224 "//url:url", | 225 "//url:url", |
| 225 ] | 226 ] |
| 226 } | 227 } |
| OLD | NEW |