Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: components/arc/BUILD.gn

Issue 2511973003: Use ArcFileSystemInstance to access files on ARC. (Closed)
Patch Set: Fix unit_tests build, and rename file_system_util. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_bridge_host_impl.cc", 10 "arc_bridge_host_impl.cc",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 testonly = true 177 testonly = true
178 sources = [ 178 sources = [
179 "test/fake_app_instance.cc", 179 "test/fake_app_instance.cc",
180 "test/fake_app_instance.h", 180 "test/fake_app_instance.h",
181 "test/fake_arc_bridge_service.cc", 181 "test/fake_arc_bridge_service.cc",
182 "test/fake_arc_bridge_service.h", 182 "test/fake_arc_bridge_service.h",
183 "test/fake_arc_session.cc", 183 "test/fake_arc_session.cc",
184 "test/fake_arc_session.h", 184 "test/fake_arc_session.h",
185 "test/fake_bluetooth_instance.cc", 185 "test/fake_bluetooth_instance.cc",
186 "test/fake_bluetooth_instance.h", 186 "test/fake_bluetooth_instance.h",
187 "test/fake_file_system_instance.cc",
188 "test/fake_file_system_instance.h",
187 "test/fake_intent_helper_instance.cc", 189 "test/fake_intent_helper_instance.cc",
188 "test/fake_intent_helper_instance.h", 190 "test/fake_intent_helper_instance.h",
189 "test/fake_notifications_instance.cc", 191 "test/fake_notifications_instance.cc",
190 "test/fake_notifications_instance.h", 192 "test/fake_notifications_instance.h",
191 "test/fake_policy_instance.cc", 193 "test/fake_policy_instance.cc",
192 "test/fake_policy_instance.h", 194 "test/fake_policy_instance.h",
193 ] 195 ]
194 196
195 public_deps = [ 197 public_deps = [
196 ":arc", 198 ":arc",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "//testing/gtest", 230 "//testing/gtest",
229 "//ui/aura", 231 "//ui/aura",
230 "//ui/aura:test_support", 232 "//ui/aura:test_support",
231 "//ui/base:test_support", 233 "//ui/base:test_support",
232 "//ui/base/ime", 234 "//ui/base/ime",
233 "//ui/events", 235 "//ui/events",
234 "//ui/events:dom_keycode_converter", 236 "//ui/events:dom_keycode_converter",
235 "//url:url", 237 "//url:url",
236 ] 238 ]
237 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698