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

Side by Side Diff: components/arc.gypi

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Luis's comments Created 5 years 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/arc 8 # GN version: //components/arc
9 'target_name': 'arc', 9 'target_name': 'arc',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 10 matching lines...) Expand all
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'arc/arc_bridge_bootstrap.cc', 23 'arc/arc_bridge_bootstrap.cc',
24 'arc/arc_bridge_bootstrap.h', 24 'arc/arc_bridge_bootstrap.h',
25 'arc/arc_bridge_service.cc', 25 'arc/arc_bridge_service.cc',
26 'arc/arc_bridge_service.h', 26 'arc/arc_bridge_service.h',
27 'arc/arc_bridge_service_impl.cc', 27 'arc/arc_bridge_service_impl.cc',
28 'arc/arc_bridge_service_impl.h', 28 'arc/arc_bridge_service_impl.h',
29 'arc/arc_service_manager.cc', 29 'arc/arc_service_manager.cc',
30 'arc/arc_service_manager.h', 30 'arc/arc_service_manager.h',
31 'arc/arc_video_service.cc',
32 'arc/arc_video_service.h',
Luis Héctor Chávez 2015/12/23 00:02:53 Can you move these to arc/video/?
kcwu 2015/12/23 01:05:23 Done.
31 'arc/input/arc_input_bridge.h', 33 'arc/input/arc_input_bridge.h',
32 'arc/input/arc_input_bridge_impl.cc', 34 'arc/input/arc_input_bridge_impl.cc',
33 'arc/input/arc_input_bridge_impl.h', 35 'arc/input/arc_input_bridge_impl.h',
34 'arc/settings/arc_settings_bridge.cc', 36 'arc/settings/arc_settings_bridge.cc',
35 'arc/settings/arc_settings_bridge.h', 37 'arc/settings/arc_settings_bridge.h',
36 ], 38 ],
37 }, 39 },
38 { 40 {
39 # GN version: //components/arc_test_support 41 # GN version: //components/arc_test_support
40 'target_name': 'arc_test_support', 42 'target_name': 'arc_test_support',
(...skipping 14 matching lines...) Expand all
55 }, 57 },
56 { 58 {
57 # GN version: //components/arc:mojo_bindings 59 # GN version: //components/arc:mojo_bindings
58 'target_name': 'arc_mojo_bindings', 60 'target_name': 'arc_mojo_bindings',
59 'type': 'static_library', 61 'type': 'static_library',
60 'includes': [ 62 'includes': [
61 '../third_party/mojo/mojom_bindings_generator.gypi', 63 '../third_party/mojo/mojom_bindings_generator.gypi',
62 ], 64 ],
63 'sources': [ 65 'sources': [
64 'arc/common/arc_bridge.mojom', 66 'arc/common/arc_bridge.mojom',
67 'arc/common/video.mojom',
65 ], 68 ],
66 }, 69 },
67 ], 70 ],
68 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698