| 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 'disable_display%': 0, | 7 'disable_display%': 0, |
| 8 'internal_ozone_platform_deps': [ | 8 'internal_ozone_platform_deps': [ |
| 9 'ozone_platform_cast', | 9 'ozone_platform_cast', |
| 10 ], | 10 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 ], | 33 ], |
| 34 'conditions': [ | 34 'conditions': [ |
| 35 ['disable_display==1', { | 35 ['disable_display==1', { |
| 36 'defines': ['DISABLE_DISPLAY'], | 36 'defines': ['DISABLE_DISPLAY'], |
| 37 }], | 37 }], |
| 38 ], | 38 ], |
| 39 | 39 |
| 40 'sources': [ | 40 'sources': [ |
| 41 'client_native_pixmap_factory_cast.cc', | 41 'client_native_pixmap_factory_cast.cc', |
| 42 'client_native_pixmap_factory_cast.h', | 42 'client_native_pixmap_factory_cast.h', |
| 43 'gl_surface_cast.cc', |
| 44 'gl_surface_cast.h', |
| 43 'gpu_platform_support_cast.cc', | 45 'gpu_platform_support_cast.cc', |
| 44 'gpu_platform_support_cast.h', | 46 'gpu_platform_support_cast.h', |
| 45 'overlay_manager_cast.cc', | 47 'overlay_manager_cast.cc', |
| 46 'overlay_manager_cast.h', | 48 'overlay_manager_cast.h', |
| 47 'ozone_platform_cast.cc', | 49 'ozone_platform_cast.cc', |
| 48 'ozone_platform_cast.h', | 50 'ozone_platform_cast.h', |
| 49 'platform_window_cast.cc', | 51 'platform_window_cast.cc', |
| 50 'platform_window_cast.h', | 52 'platform_window_cast.h', |
| 51 'surface_factory_cast.cc', | 53 'surface_factory_cast.cc', |
| 52 'surface_factory_cast.h', | 54 'surface_factory_cast.h', |
| 53 'surface_ozone_egl_cast.cc', | |
| 54 'surface_ozone_egl_cast.h', | |
| 55 ], | 55 ], |
| 56 'link_settings': { | 56 'link_settings': { |
| 57 'libraries': [ | 57 'libraries': [ |
| 58 '-ldl', | 58 '-ldl', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 }, | 61 }, |
| 62 ], | 62 ], |
| 63 } | 63 } |
| OLD | NEW |