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

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: (forgot to add) Created 4 years, 12 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_service.cc",
25 "video/arc_video_service.h",
24 ] 26 ]
25 27
26 deps = [ 28 deps = [
27 "//base", 29 "//base",
28 "//base:prefs", 30 "//base:prefs",
29 "//chromeos", 31 "//chromeos",
30 "//chromeos:power_manager_proto", 32 "//chromeos:power_manager_proto",
31 "//ipc:ipc", 33 "//ipc:ipc",
32 "//ipc/mojo:mojo", 34 "//ipc/mojo:mojo",
33 "//third_party/mojo/src/mojo/edk/system", 35 "//third_party/mojo/src/mojo/edk/system",
34 "//ui/aura", 36 "//ui/aura",
35 "//ui/events", 37 "//ui/events",
36 "//ui/events:dom_keycode_converter", 38 "//ui/events:dom_keycode_converter",
37 ] 39 ]
38 40
39 public_deps = [ 41 public_deps = [
40 ":arc_bindings", 42 ":arc_bindings",
41 ] 43 ]
42 } 44 }
43 45
44 mojom("arc_bindings") { 46 mojom("arc_bindings") {
45 sources = [ 47 sources = [
46 "common/app.mojom", 48 "common/app.mojom",
47 "common/arc_bridge.mojom", 49 "common/arc_bridge.mojom",
48 "common/input.mojom", 50 "common/input.mojom",
49 "common/notifications.mojom", 51 "common/notifications.mojom",
50 "common/power.mojom", 52 "common/power.mojom",
51 "common/process.mojom", 53 "common/process.mojom",
52 "common/settings.mojom", 54 "common/settings.mojom",
55 "common/video.mojom",
53 ] 56 ]
54 } 57 }
55 58
56 static_library("arc_test_support") { 59 static_library("arc_test_support") {
57 testonly = true 60 testonly = true
58 sources = [ 61 sources = [
59 "test/fake_app_instance.cc", 62 "test/fake_app_instance.cc",
60 "test/fake_app_instance.h", 63 "test/fake_app_instance.h",
61 "test/fake_arc_bridge_instance.cc", 64 "test/fake_arc_bridge_instance.cc",
62 "test/fake_arc_bridge_instance.h", 65 "test/fake_arc_bridge_instance.h",
(...skipping 23 matching lines...) Expand all
86 "//chromeos", 89 "//chromeos",
87 "//ipc/mojo:mojo", 90 "//ipc/mojo:mojo",
88 "//mojo/public/cpp/environment:environment", 91 "//mojo/public/cpp/environment:environment",
89 "//mojo/public/cpp/system:system", 92 "//mojo/public/cpp/system:system",
90 "//testing/gtest", 93 "//testing/gtest",
91 "//ui/aura", 94 "//ui/aura",
92 "//ui/events", 95 "//ui/events",
93 "//ui/events:dom_keycode_converter", 96 "//ui/events:dom_keycode_converter",
94 ] 97 ]
95 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698