OLD | NEW |
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 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
17 '../cc/cc.gyp:cc', | 17 '../cc/cc.gyp:cc', |
18 '../gpu/gpu.gyp:gpu', | 18 '../gpu/gpu.gyp:gpu', |
19 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
20 '../ui/aura/aura.gyp:aura', | 20 '../ui/aura/aura.gyp:aura', |
21 '../ui/compositor/compositor.gyp:compositor', | 21 '../ui/compositor/compositor.gyp:compositor', |
22 '../ui/gfx/gfx.gyp:gfx', | 22 '../ui/gfx/gfx.gyp:gfx', |
23 '../ui/gfx/gfx.gyp:gfx_geometry', | 23 '../ui/gfx/gfx.gyp:gfx_geometry', |
24 '../ui/gl/gl.gyp:gl', | 24 '../ui/gl/gl.gyp:gl', |
25 '../ui/views/views.gyp:views', | 25 '../ui/views/views.gyp:views', |
| 26 '../ui/wm/wm.gyp:wm', |
26 ], | 27 ], |
27 'export_dependent_settings': [ | 28 'export_dependent_settings': [ |
28 '../ui/views/views.gyp:views', | 29 '../ui/views/views.gyp:views', |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
31 # Note: sources list duplicated in GN build. | 32 # Note: sources list duplicated in GN build. |
32 'exo/buffer.cc', | 33 'exo/buffer.cc', |
33 'exo/buffer.h', | 34 'exo/buffer.h', |
34 'exo/display.cc', | 35 'exo/display.cc', |
35 'exo/display.h', | 36 'exo/display.h', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'defines': [ | 101 'defines': [ |
101 'USE_XKBCOMMON', | 102 'USE_XKBCOMMON', |
102 ], | 103 ], |
103 }], | 104 }], |
104 ], | 105 ], |
105 }, | 106 }, |
106 ], | 107 ], |
107 }], | 108 }], |
108 ], | 109 ], |
109 } | 110 } |
OLD | NEW |