| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "common/policy.mojom", | 154 "common/policy.mojom", |
| 155 "common/power.mojom", | 155 "common/power.mojom", |
| 156 "common/print.mojom", | 156 "common/print.mojom", |
| 157 "common/process.mojom", | 157 "common/process.mojom", |
| 158 "common/scale_factor.mojom", | 158 "common/scale_factor.mojom", |
| 159 "common/screen_rect.mojom", | 159 "common/screen_rect.mojom", |
| 160 "common/storage_manager.mojom", | 160 "common/storage_manager.mojom", |
| 161 "common/tracing.mojom", | 161 "common/tracing.mojom", |
| 162 "common/tts.mojom", | 162 "common/tts.mojom", |
| 163 "common/video.mojom", | 163 "common/video.mojom", |
| 164 "common/video_accelerator.mojom", | 164 "common/video_decode_accelerator.mojom", |
| 165 "common/voice_interaction_arc_home.mojom", | 165 "common/voice_interaction_arc_home.mojom", |
| 166 "common/voice_interaction_framework.mojom", | 166 "common/voice_interaction_framework.mojom", |
| 167 "common/wallpaper.mojom", | 167 "common/wallpaper.mojom", |
| 168 ] | 168 ] |
| 169 | 169 |
| 170 public_deps = [ | 170 public_deps = [ |
| 171 "//mojo/common:common_custom_types", | 171 "//mojo/common:common_custom_types", |
| 172 "//ui/gfx/geometry/mojo", | 172 "//ui/gfx/geometry/mojo", |
| 173 ] | 173 ] |
| 174 | 174 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 "//testing/gtest", | 241 "//testing/gtest", |
| 242 "//ui/aura", | 242 "//ui/aura", |
| 243 "//ui/aura:test_support", | 243 "//ui/aura:test_support", |
| 244 "//ui/base:test_support", | 244 "//ui/base:test_support", |
| 245 "//ui/base/ime", | 245 "//ui/base/ime", |
| 246 "//ui/events", | 246 "//ui/events", |
| 247 "//ui/events:dom_keycode_converter", | 247 "//ui/events:dom_keycode_converter", |
| 248 "//url:url", | 248 "//url:url", |
| 249 ] | 249 ] |
| 250 } | 250 } |
| OLD | NEW |