| 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 10 matching lines...) Expand all Loading... |
| 21 "ime/arc_ime_bridge.h", | 21 "ime/arc_ime_bridge.h", |
| 22 "ime/arc_ime_ipc_host.cc", | 22 "ime/arc_ime_ipc_host.cc", |
| 23 "ime/arc_ime_ipc_host.h", | 23 "ime/arc_ime_ipc_host.h", |
| 24 "input/arc_input_bridge.h", | 24 "input/arc_input_bridge.h", |
| 25 "input/arc_input_bridge_impl.cc", | 25 "input/arc_input_bridge_impl.cc", |
| 26 "input/arc_input_bridge_impl.h", | 26 "input/arc_input_bridge_impl.h", |
| 27 "intent_helper/arc_intent_helper_bridge.cc", | 27 "intent_helper/arc_intent_helper_bridge.cc", |
| 28 "intent_helper/arc_intent_helper_bridge.h", | 28 "intent_helper/arc_intent_helper_bridge.h", |
| 29 "power/arc_power_bridge.cc", | 29 "power/arc_power_bridge.cc", |
| 30 "power/arc_power_bridge.h", | 30 "power/arc_power_bridge.h", |
| 31 "settings/arc_settings_bridge.cc", | |
| 32 "settings/arc_settings_bridge.h", | |
| 33 "video/arc_video_bridge.cc", | 31 "video/arc_video_bridge.cc", |
| 34 "video/arc_video_bridge.h", | 32 "video/arc_video_bridge.h", |
| 35 "video/video_host_delegate.h", | 33 "video/video_host_delegate.h", |
| 36 ] | 34 ] |
| 37 | 35 |
| 38 deps = [ | 36 deps = [ |
| 39 "//base", | 37 "//base", |
| 40 "//base:prefs", | 38 "//base:prefs", |
| 41 "//chromeos", | 39 "//chromeos", |
| 42 "//chromeos:power_manager_proto", | 40 "//chromeos:power_manager_proto", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 62 "common/app.mojom", | 60 "common/app.mojom", |
| 63 "common/arc_bridge.mojom", | 61 "common/arc_bridge.mojom", |
| 64 "common/auth.mojom", | 62 "common/auth.mojom", |
| 65 "common/clipboard.mojom", | 63 "common/clipboard.mojom", |
| 66 "common/ime.mojom", | 64 "common/ime.mojom", |
| 67 "common/input.mojom", | 65 "common/input.mojom", |
| 68 "common/intent_helper.mojom", | 66 "common/intent_helper.mojom", |
| 69 "common/notifications.mojom", | 67 "common/notifications.mojom", |
| 70 "common/power.mojom", | 68 "common/power.mojom", |
| 71 "common/process.mojom", | 69 "common/process.mojom", |
| 72 "common/settings.mojom", | |
| 73 "common/video.mojom", | 70 "common/video.mojom", |
| 74 ] | 71 ] |
| 75 } | 72 } |
| 76 | 73 |
| 77 static_library("arc_test_support") { | 74 static_library("arc_test_support") { |
| 78 testonly = true | 75 testonly = true |
| 79 sources = [ | 76 sources = [ |
| 80 "test/fake_app_instance.cc", | 77 "test/fake_app_instance.cc", |
| 81 "test/fake_app_instance.h", | 78 "test/fake_app_instance.h", |
| 82 "test/fake_arc_bridge_instance.cc", | 79 "test/fake_arc_bridge_instance.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 107 "//chromeos", | 104 "//chromeos", |
| 108 "//ipc/mojo:mojo", | 105 "//ipc/mojo:mojo", |
| 109 "//mojo/public/cpp/environment:environment", | 106 "//mojo/public/cpp/environment:environment", |
| 110 "//mojo/public/cpp/system:system", | 107 "//mojo/public/cpp/system:system", |
| 111 "//testing/gtest", | 108 "//testing/gtest", |
| 112 "//ui/aura", | 109 "//ui/aura", |
| 113 "//ui/events", | 110 "//ui/events", |
| 114 "//ui/events:dom_keycode_converter", | 111 "//ui/events:dom_keycode_converter", |
| 115 ] | 112 ] |
| 116 } | 113 } |
| OLD | NEW |