| 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_service_manager.cc", | 10 "arc_service_manager.cc", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "common/net.mojom", | 147 "common/net.mojom", |
| 148 "common/notifications.mojom", | 148 "common/notifications.mojom", |
| 149 "common/obb_mounter.mojom", | 149 "common/obb_mounter.mojom", |
| 150 "common/policy.mojom", | 150 "common/policy.mojom", |
| 151 "common/power.mojom", | 151 "common/power.mojom", |
| 152 "common/print.mojom", | 152 "common/print.mojom", |
| 153 "common/process.mojom", | 153 "common/process.mojom", |
| 154 "common/scale_factor.mojom", | 154 "common/scale_factor.mojom", |
| 155 "common/screen_rect.mojom", | 155 "common/screen_rect.mojom", |
| 156 "common/storage_manager.mojom", | 156 "common/storage_manager.mojom", |
| 157 "common/tracing.mojom", |
| 157 "common/tts.mojom", | 158 "common/tts.mojom", |
| 158 "common/video.mojom", | 159 "common/video.mojom", |
| 159 "common/video_accelerator.mojom", | 160 "common/video_accelerator.mojom", |
| 160 "common/wallpaper.mojom", | 161 "common/wallpaper.mojom", |
| 161 ] | 162 ] |
| 162 | 163 |
| 163 public_deps = [ | 164 public_deps = [ |
| 164 "//mojo/common:common_custom_types", | 165 "//mojo/common:common_custom_types", |
| 165 "//ui/gfx/geometry/mojo", | 166 "//ui/gfx/geometry/mojo", |
| 166 ] | 167 ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 "//testing/gtest", | 226 "//testing/gtest", |
| 226 "//ui/aura", | 227 "//ui/aura", |
| 227 "//ui/aura:test_support", | 228 "//ui/aura:test_support", |
| 228 "//ui/base:test_support", | 229 "//ui/base:test_support", |
| 229 "//ui/base/ime", | 230 "//ui/base/ime", |
| 230 "//ui/events", | 231 "//ui/events", |
| 231 "//ui/events:dom_keycode_converter", | 232 "//ui/events:dom_keycode_converter", |
| 232 "//url:url", | 233 "//url:url", |
| 233 ] | 234 ] |
| 234 } | 235 } |
| OLD | NEW |