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

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

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Owen's comments: split GpuArcVideoServiceHost and named the new code arc::ArcVideoBridge Created 4 years, 11 months 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 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",
11 "arc_bridge_service.cc", 11 "arc_bridge_service.cc",
12 "arc_bridge_service.h", 12 "arc_bridge_service.h",
13 "arc_bridge_service_impl.cc", 13 "arc_bridge_service_impl.cc",
14 "arc_bridge_service_impl.h", 14 "arc_bridge_service_impl.h",
15 "arc_service_manager.cc", 15 "arc_service_manager.cc",
16 "arc_service_manager.h", 16 "arc_service_manager.h",
17 "input/arc_input_bridge.h", 17 "input/arc_input_bridge.h",
18 "input/arc_input_bridge_impl.cc", 18 "input/arc_input_bridge_impl.cc",
19 "input/arc_input_bridge_impl.h", 19 "input/arc_input_bridge_impl.h",
20 "power/arc_power_bridge.cc", 20 "power/arc_power_bridge.cc",
21 "power/arc_power_bridge.h", 21 "power/arc_power_bridge.h",
22 "settings/arc_settings_bridge.cc", 22 "settings/arc_settings_bridge.cc",
23 "settings/arc_settings_bridge.h", 23 "settings/arc_settings_bridge.h",
24 "video/arc_video_bridge.cc",
25 "video/arc_video_bridge.h",
26 "video/video_host_delegate.h",
24 ] 27 ]
25 28
26 deps = [ 29 deps = [
27 "//base", 30 "//base",
28 "//base:prefs", 31 "//base:prefs",
29 "//chromeos", 32 "//chromeos",
30 "//chromeos:power_manager_proto", 33 "//chromeos:power_manager_proto",
31 "//ipc:ipc", 34 "//ipc:ipc",
32 "//ipc/mojo:mojo", 35 "//ipc/mojo:mojo",
33 "//third_party/mojo/src/mojo/edk/system", 36 "//third_party/mojo/src/mojo/edk/system",
34 "//ui/aura", 37 "//ui/aura",
35 "//ui/events", 38 "//ui/events",
36 "//ui/events:dom_keycode_converter", 39 "//ui/events:dom_keycode_converter",
37 ] 40 ]
38 41
39 public_deps = [ 42 public_deps = [
40 ":arc_bindings", 43 ":arc_bindings",
41 ] 44 ]
42 } 45 }
43 46
44 mojom("arc_bindings") { 47 mojom("arc_bindings") {
45 sources = [ 48 sources = [
46 "common/app.mojom", 49 "common/app.mojom",
47 "common/arc_bridge.mojom", 50 "common/arc_bridge.mojom",
48 "common/input.mojom", 51 "common/input.mojom",
49 "common/notifications.mojom", 52 "common/notifications.mojom",
50 "common/power.mojom", 53 "common/power.mojom",
51 "common/process.mojom", 54 "common/process.mojom",
52 "common/settings.mojom", 55 "common/settings.mojom",
56 "common/video.mojom",
53 ] 57 ]
54 } 58 }
55 59
56 static_library("arc_test_support") { 60 static_library("arc_test_support") {
57 testonly = true 61 testonly = true
58 sources = [ 62 sources = [
59 "test/fake_app_instance.cc", 63 "test/fake_app_instance.cc",
60 "test/fake_app_instance.h", 64 "test/fake_app_instance.h",
61 "test/fake_arc_bridge_instance.cc", 65 "test/fake_arc_bridge_instance.cc",
62 "test/fake_arc_bridge_instance.h", 66 "test/fake_arc_bridge_instance.h",
(...skipping 23 matching lines...) Expand all
86 "//chromeos", 90 "//chromeos",
87 "//ipc/mojo:mojo", 91 "//ipc/mojo:mojo",
88 "//mojo/public/cpp/environment:environment", 92 "//mojo/public/cpp/environment:environment",
89 "//mojo/public/cpp/system:system", 93 "//mojo/public/cpp/system:system",
90 "//testing/gtest", 94 "//testing/gtest",
91 "//ui/aura", 95 "//ui/aura",
92 "//ui/events", 96 "//ui/events",
93 "//ui/events:dom_keycode_converter", 97 "//ui/events:dom_keycode_converter",
94 ] 98 ]
95 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698