Fix search results being clipped in app list.
[chromium-blink-merge.git] / ui / ozone / platform / drm / gbm.gypi
blobb160e8f3ae7f32d40a9d8e42d3aac9a476dc1957
1 # Copyright 2014 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.
6   'variables': {
7     'internal_ozone_platform_deps': [
8       'ozone_platform_gbm',
9     ],
10     'internal_ozone_platforms': [
11       'gbm',
12     ],
13     'use_mesa_platform_null%': 0,
14   },
15   'targets': [
16     {
17       'target_name': 'ozone_platform_gbm',
18       'type': 'static_library',
19       'dependencies': [
20         '../../base/base.gyp:base',
21         '../../build/linux/system.gyp:libdrm',
22         '../../build/linux/system.gyp:gbm',
23         '../../skia/skia.gyp:skia',
24         '../../third_party/khronos/khronos.gyp:khronos_headers',
25         '../base/ui_base.gyp:ui_base',
26         '../events/events.gyp:events',
27         '../events/ozone/events_ozone.gyp:events_ozone',
28         '../events/ozone/events_ozone.gyp:events_ozone_evdev',
29         '../events/ozone/events_ozone.gyp:events_ozone_layout',
30         '../gfx/gfx.gyp:gfx',
31       ],
32       'defines': [
33         'OZONE_IMPLEMENTATION',
34       ],
35       'sources': [
36         'gbm_surface_factory.cc',
37         'gbm_surface_factory.h',
38         'gpu/gbm_buffer.cc',
39         'gpu/gbm_buffer.h',
40         'gpu/gbm_buffer_base.cc',
41         'gpu/gbm_buffer_base.h',
42         'gpu/gbm_device.cc',
43         'gpu/gbm_device.h',
44         'gpu/gbm_surface.cc',
45         'gpu/gbm_surface.h',
46         'gpu/gbm_surfaceless.cc',
47         'gpu/gbm_surfaceless.h',
48         'ozone_platform_gbm.cc',
49         'ozone_platform_gbm.h',
50       ],
51       'conditions': [
52         ['use_mesa_platform_null==1', {
53           'defines': ['USE_MESA_PLATFORM_NULL'],
54         }],
55       ],
56     },
57   ],