| 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 | 6 |
| 7 static_library("arc") { | 7 static_library("arc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "arc_bridge_bootstrap.cc", | 9 "arc_bridge_bootstrap.cc", |
| 10 "arc_bridge_bootstrap.h", | 10 "arc_bridge_bootstrap.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "common/app.mojom", | 55 "common/app.mojom", |
| 56 "common/arc_bridge.mojom", | 56 "common/arc_bridge.mojom", |
| 57 "common/auth.mojom", | 57 "common/auth.mojom", |
| 58 "common/clipboard.mojom", | 58 "common/clipboard.mojom", |
| 59 "common/input.mojom", | 59 "common/input.mojom", |
| 60 "common/notifications.mojom", | 60 "common/notifications.mojom", |
| 61 "common/power.mojom", | 61 "common/power.mojom", |
| 62 "common/process.mojom", | 62 "common/process.mojom", |
| 63 "common/settings.mojom", | 63 "common/settings.mojom", |
| 64 "common/video.mojom", | 64 "common/video.mojom", |
| 65 "common/video_accelerator.mojom", |
| 65 ] | 66 ] |
| 66 } | 67 } |
| 67 | 68 |
| 68 static_library("arc_test_support") { | 69 static_library("arc_test_support") { |
| 69 testonly = true | 70 testonly = true |
| 70 sources = [ | 71 sources = [ |
| 71 "test/fake_app_instance.cc", | 72 "test/fake_app_instance.cc", |
| 72 "test/fake_app_instance.h", | 73 "test/fake_app_instance.h", |
| 73 "test/fake_arc_bridge_instance.cc", | 74 "test/fake_arc_bridge_instance.cc", |
| 74 "test/fake_arc_bridge_instance.h", | 75 "test/fake_arc_bridge_instance.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 98 "//chromeos", | 99 "//chromeos", |
| 99 "//ipc/mojo:mojo", | 100 "//ipc/mojo:mojo", |
| 100 "//mojo/public/cpp/environment:environment", | 101 "//mojo/public/cpp/environment:environment", |
| 101 "//mojo/public/cpp/system:system", | 102 "//mojo/public/cpp/system:system", |
| 102 "//testing/gtest", | 103 "//testing/gtest", |
| 103 "//ui/aura", | 104 "//ui/aura", |
| 104 "//ui/events", | 105 "//ui/events", |
| 105 "//ui/events:dom_keycode_converter", | 106 "//ui/events:dom_keycode_converter", |
| 106 ] | 107 ] |
| 107 } | 108 } |
| OLD | NEW |