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

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

Issue 2892863002: ArcBridge: Add VideoEncodeAccelerator implementation. (Closed)
Patch Set: Address nit from Luis. Created 3 years, 6 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 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_service_manager.cc", 10 "arc_service_manager.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "metrics/arc_metrics_service.cc", 52 "metrics/arc_metrics_service.cc",
53 "metrics/arc_metrics_service.h", 53 "metrics/arc_metrics_service.h",
54 "net/arc_net_host_impl.cc", 54 "net/arc_net_host_impl.cc",
55 "net/arc_net_host_impl.h", 55 "net/arc_net_host_impl.h",
56 "obb_mounter/arc_obb_mounter_bridge.cc", 56 "obb_mounter/arc_obb_mounter_bridge.cc",
57 "obb_mounter/arc_obb_mounter_bridge.h", 57 "obb_mounter/arc_obb_mounter_bridge.h",
58 "power/arc_power_bridge.cc", 58 "power/arc_power_bridge.cc",
59 "power/arc_power_bridge.h", 59 "power/arc_power_bridge.h",
60 "storage_manager/arc_storage_manager.cc", 60 "storage_manager/arc_storage_manager.cc",
61 "storage_manager/arc_storage_manager.h", 61 "storage_manager/arc_storage_manager.h",
62 "video_accelerator/video_accelerator_struct_traits.cc", 62 "video_accelerator/video_accelerator_struct_traits.cc",
kcwu 2017/06/09 06:30:24 Are these forgot to rename?
Owen Lin 2017/06/12 06:34:13 There are common struct_traits for both decoders a
kcwu 2017/06/12 06:41:30 Oh, then no need to rename them.
63 "video_accelerator/video_accelerator_struct_traits.h", 63 "video_accelerator/video_accelerator_struct_traits.h",
64 "video_accelerator/video_encode_accelerator_struct_traits.cc",
65 "video_accelerator/video_encode_accelerator_struct_traits.h",
64 ] 66 ]
65 67
66 public_deps = [ 68 public_deps = [
67 ":arc_base", 69 ":arc_base",
68 ] 70 ]
69 71
70 deps = [ 72 deps = [
71 "//ash:ash", 73 "//ash:ash",
72 "//ash/public/cpp:ash_public_cpp", 74 "//ash/public/cpp:ash_public_cpp",
73 "//ash/shared:app_types", 75 "//ash/shared:app_types",
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "//testing/gtest", 245 "//testing/gtest",
244 "//ui/aura", 246 "//ui/aura",
245 "//ui/aura:test_support", 247 "//ui/aura:test_support",
246 "//ui/base:test_support", 248 "//ui/base:test_support",
247 "//ui/base/ime", 249 "//ui/base/ime",
248 "//ui/events", 250 "//ui/events",
249 "//ui/events:dom_keycode_converter", 251 "//ui/events:dom_keycode_converter",
250 "//url:url", 252 "//url:url",
251 ] 253 ]
252 } 254 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698