| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/tracing.mojom", |
| 158 "common/tts.mojom", | 158 "common/tts.mojom", |
| 159 "common/video.mojom", | 159 "common/video.mojom", |
| 160 "common/video_accelerator.mojom", | 160 "common/video_accelerator.mojom", |
| 161 "common/voice_interaction_framework.mojom", |
| 161 "common/wallpaper.mojom", | 162 "common/wallpaper.mojom", |
| 162 ] | 163 ] |
| 163 | 164 |
| 164 public_deps = [ | 165 public_deps = [ |
| 165 "//mojo/common:common_custom_types", | 166 "//mojo/common:common_custom_types", |
| 166 "//ui/gfx/geometry/mojo", | 167 "//ui/gfx/geometry/mojo", |
| 167 ] | 168 ] |
| 168 } | 169 } |
| 169 | 170 |
| 170 static_library("arc_test_support") { | 171 static_library("arc_test_support") { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "//testing/gtest", | 227 "//testing/gtest", |
| 227 "//ui/aura", | 228 "//ui/aura", |
| 228 "//ui/aura:test_support", | 229 "//ui/aura:test_support", |
| 229 "//ui/base:test_support", | 230 "//ui/base:test_support", |
| 230 "//ui/base/ime", | 231 "//ui/base/ime", |
| 231 "//ui/events", | 232 "//ui/events", |
| 232 "//ui/events:dom_keycode_converter", | 233 "//ui/events:dom_keycode_converter", |
| 233 "//url:url", | 234 "//url:url", |
| 234 ] | 235 ] |
| 235 } | 236 } |
| OLD | NEW |