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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "ime/arc_ime_bridge_unittest.cc", | 103 "ime/arc_ime_bridge_unittest.cc", |
104 ] | 104 ] |
105 | 105 |
106 deps = [ | 106 deps = [ |
107 ":arc", | 107 ":arc", |
108 ":arc_bindings", | 108 ":arc_bindings", |
109 ":arc_test_support", | 109 ":arc_test_support", |
110 "//base", | 110 "//base", |
111 "//chromeos", | 111 "//chromeos", |
112 "//ipc/mojo:mojo", | 112 "//ipc/mojo:mojo", |
113 "//mojo/public/cpp/environment:environment", | |
114 "//mojo/public/cpp/system:system", | 113 "//mojo/public/cpp/system:system", |
115 "//testing/gtest", | 114 "//testing/gtest", |
116 "//ui/aura", | 115 "//ui/aura", |
117 "//ui/base:test_support", | 116 "//ui/base:test_support", |
118 "//ui/base/ime", | 117 "//ui/base/ime", |
119 "//ui/events", | 118 "//ui/events", |
120 "//ui/events:dom_keycode_converter", | 119 "//ui/events:dom_keycode_converter", |
121 ] | 120 ] |
122 } | 121 } |
OLD | NEW |