Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 'variables': { | 6 'variables': { |
| 7 'internal_ozone_platform_deps': [ | 7 'internal_ozone_platform_deps': [ |
| 8 'ozone_platform_gbm', | 8 'ozone_platform_gbm', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platforms': [ | 10 'internal_ozone_platforms': [ |
| 11 'gbm', | 11 'gbm', |
| 12 ], | 12 ], |
| 13 'use_mesa_platform_null%': 0, | 13 'use_mesa_platform_null%': 0, |
| 14 'ozone_use_vgem_map%': 0, | |
|
reveman
2015/08/07 14:35:16
just to be sure I understand. we have hardware tha
vignatti (out of this project)
2015/08/07 14:51:25
correct, but I don't think it's about hardware onl
dshwang
2015/08/07 15:36:46
correct. Done.
| |
| 14 }, | 15 }, |
| 15 'targets': [ | 16 'targets': [ |
| 16 { | 17 { |
| 17 'target_name': 'ozone_platform_gbm', | 18 'target_name': 'ozone_platform_gbm', |
| 18 'type': 'static_library', | 19 'type': 'static_library', |
| 19 'dependencies': [ | 20 'dependencies': [ |
| 20 '../../base/base.gyp:base', | 21 '../../base/base.gyp:base', |
| 21 '../../build/linux/system.gyp:libdrm', | 22 '../../build/linux/system.gyp:libdrm', |
| 22 '../../build/linux/system.gyp:gbm', | 23 '../../build/linux/system.gyp:gbm', |
| 23 '../../skia/skia.gyp:skia', | 24 '../../skia/skia.gyp:skia', |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 47 'gpu/gbm_surface_factory.h', | 48 'gpu/gbm_surface_factory.h', |
| 48 'gpu/gbm_surfaceless.cc', | 49 'gpu/gbm_surfaceless.cc', |
| 49 'gpu/gbm_surfaceless.h', | 50 'gpu/gbm_surfaceless.h', |
| 50 'ozone_platform_gbm.cc', | 51 'ozone_platform_gbm.cc', |
| 51 'ozone_platform_gbm.h', | 52 'ozone_platform_gbm.h', |
| 52 ], | 53 ], |
| 53 'conditions': [ | 54 'conditions': [ |
| 54 ['use_mesa_platform_null==1', { | 55 ['use_mesa_platform_null==1', { |
| 55 'defines': ['USE_MESA_PLATFORM_NULL'], | 56 'defines': ['USE_MESA_PLATFORM_NULL'], |
| 56 }], | 57 }], |
| 58 ['ozone_use_vgem_map==1', { | |
| 59 'defines': ['OZONE_USE_VGEM_MAP'], | |
| 60 'sources': [ | |
| 61 'gpu/client_native_pixmap_vgem.cc', | |
| 62 'gpu/client_native_pixmap_vgem.h', | |
| 63 ], | |
| 64 }], | |
| 57 ], | 65 ], |
| 58 }, | 66 }, |
| 59 ], | 67 ], |
| 60 } | 68 } |
| OLD | NEW |