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

Side by Side Diff: components/exo.gypi

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on improved shared memory support 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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/exo
9 'target_name': 'exo',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../ash/ash.gyp:ash',
16 '../base/base.gyp:base',
17 '../cc/cc.gyp:cc',
18 '../gpu/gpu.gyp:gpu',
19 '../skia/skia.gyp:skia',
20 '../ui/aura/aura.gyp:aura',
21 '../ui/compositor/compositor.gyp:compositor',
22 '../ui/gfx/gfx.gyp:gfx',
23 '../ui/gfx/gfx.gyp:gfx_geometry',
24 '../ui/gl/gl.gyp:gl',
25 '../ui/views/views.gyp:views',
26 ],
27 'sources': [
28 # Note: sources list duplicated in GN build.
29 'exo/buffer.cc',
30 'exo/buffer.h',
31 'exo/display.cc',
32 'exo/display.h',
33 'exo/shared_memory.cc',
34 'exo/shared_memory.h',
35 'exo/shell_surface.cc',
36 'exo/shell_surface.h',
37 'exo/surface.cc',
38 'exo/surface.h',
39 'exo/surface_delegate.h',
40 ],
41 'defines': [
42 'EXO_IMPLEMENTATION',
43 ],
44 },
45 {
46 # GN version: //components/exo:wayland
47 'target_name': 'exo_wayland',
48 'type': 'static_library',
49 'include_dirs': [
50 '..',
51 ],
52 'dependencies': [
53 '../base/base.gyp:base',
54 '../skia/skia.gyp:skia',
55 '../third_party/wayland/wayland.gyp:wayland_server',
56 'exo',
57 ],
58 'sources': [
59 # Note: sources list duplicated in GN build.
60 'exo/wayland/scoped_wl_types.cc',
61 'exo/wayland/scoped_wl_types.h',
62 'exo/wayland/server.cc',
63 'exo/wayland/server.h',
64 'exo/wayland/wayland_bindings.h',
65 ],
66 'defines': [
67 'EXO_IMPLEMENTATION',
68 ],
69 },
70 ],
71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698