| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 public_deps = [ | 39 public_deps = [ |
| 40 ":arc_bindings", | 40 ":arc_bindings", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 mojom("arc_bindings") { | 44 mojom("arc_bindings") { |
| 45 sources = [ | 45 sources = [ |
| 46 "common/app.mojom", | 46 "common/app.mojom", |
| 47 "common/arc_bridge.mojom", | 47 "common/arc_bridge.mojom", |
| 48 "common/auth.mojom", |
| 48 "common/input.mojom", | 49 "common/input.mojom", |
| 49 "common/notifications.mojom", | 50 "common/notifications.mojom", |
| 50 "common/power.mojom", | 51 "common/power.mojom", |
| 51 "common/process.mojom", | 52 "common/process.mojom", |
| 52 "common/settings.mojom", | 53 "common/settings.mojom", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 | 56 |
| 56 static_library("arc_test_support") { | 57 static_library("arc_test_support") { |
| 57 testonly = true | 58 testonly = true |
| (...skipping 28 matching lines...) Expand all Loading... |
| 86 "//chromeos", | 87 "//chromeos", |
| 87 "//ipc/mojo:mojo", | 88 "//ipc/mojo:mojo", |
| 88 "//mojo/public/cpp/environment:environment", | 89 "//mojo/public/cpp/environment:environment", |
| 89 "//mojo/public/cpp/system:system", | 90 "//mojo/public/cpp/system:system", |
| 90 "//testing/gtest", | 91 "//testing/gtest", |
| 91 "//ui/aura", | 92 "//ui/aura", |
| 92 "//ui/events", | 93 "//ui/events", |
| 93 "//ui/events:dom_keycode_converter", | 94 "//ui/events:dom_keycode_converter", |
| 94 ] | 95 ] |
| 95 } | 96 } |
| OLD | NEW |