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

Side by Side Diff: components/exo.gypi

Issue 1408263006: chromeos: Add ArcInputBridge to components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arcxx
Patch Set: fixed scopedfd Created 5 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/exo 8 # GN version: //components/exo
9 'target_name': 'exo', 9 'target_name': 'exo',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../ash/ash.gyp:ash', 15 '../ash/ash.gyp:ash',
16 '../ash/ash_resources.gyp:ash_resources', 16 '../ash/ash_resources.gyp:ash_resources',
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 '../cc/cc.gyp:cc', 18 '../cc/cc.gyp:cc',
19 '../gpu/gpu.gyp:gpu', 19 '../gpu/gpu.gyp:gpu',
20 '../skia/skia.gyp:skia', 20 '../skia/skia.gyp:skia',
21 '../ui/aura/aura.gyp:aura', 21 '../ui/aura/aura.gyp:aura',
22 '../ui/compositor/compositor.gyp:compositor', 22 '../ui/compositor/compositor.gyp:compositor',
23 '../ui/gfx/gfx.gyp:gfx', 23 '../ui/gfx/gfx.gyp:gfx',
24 '../ui/gfx/gfx.gyp:gfx_geometry', 24 '../ui/gfx/gfx.gyp:gfx_geometry',
25 '../ui/gl/gl.gyp:gl', 25 '../ui/gl/gl.gyp:gl',
26 '../ui/views/views.gyp:views', 26 '../ui/views/views.gyp:views',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 # Note: sources list duplicated in GN build. 29 # Note: sources list duplicated in GN build.
30 'exo/arc/arc_input_bridge.cc',
31 'exo/arc/arc_input_bridge.h',
30 'exo/buffer.cc', 32 'exo/buffer.cc',
31 'exo/buffer.h', 33 'exo/buffer.h',
32 'exo/display.cc', 34 'exo/display.cc',
33 'exo/display.h', 35 'exo/display.h',
34 'exo/shared_memory.cc', 36 'exo/shared_memory.cc',
35 'exo/shared_memory.h', 37 'exo/shared_memory.h',
36 'exo/shell_surface.cc', 38 'exo/shell_surface.cc',
37 'exo/shell_surface.h', 39 'exo/shell_surface.h',
38 'exo/sub_surface.cc', 40 'exo/sub_surface.cc',
39 'exo/sub_surface.h', 41 'exo/sub_surface.h',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'conditions': [ 75 'conditions': [
74 ['use_ozone==1', { 76 ['use_ozone==1', {
75 'dependencies': [ 77 'dependencies': [
76 '../third_party/mesa/mesa.gyp:wayland_drm_protocol', 78 '../third_party/mesa/mesa.gyp:wayland_drm_protocol',
77 ], 79 ],
78 }], 80 }],
79 ], 81 ],
80 }, 82 },
81 ], 83 ],
82 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698