| 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', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'sources': [ | 27 'sources': [ |
| 28 # Note: sources list duplicated in GN build. | 28 # Note: sources list duplicated in GN build. |
| 29 'exo/buffer.cc', | 29 'exo/buffer.cc', |
| 30 'exo/buffer.h', | 30 'exo/buffer.h', |
| 31 'exo/display.cc', | 31 'exo/display.cc', |
| 32 'exo/display.h', | 32 'exo/display.h', |
| 33 'exo/shared_memory.cc', | 33 'exo/shared_memory.cc', |
| 34 'exo/shared_memory.h', | 34 'exo/shared_memory.h', |
| 35 'exo/shell_surface.cc', | 35 'exo/shell_surface.cc', |
| 36 'exo/shell_surface.h', | 36 'exo/shell_surface.h', |
| 37 'exo/sub_surface.cc', |
| 38 'exo/sub_surface.h', |
| 37 'exo/surface.cc', | 39 'exo/surface.cc', |
| 38 'exo/surface.h', | 40 'exo/surface.h', |
| 39 'exo/surface_delegate.h', | 41 'exo/surface_delegate.h', |
| 42 'exo/surface_observer.h', |
| 40 ], | 43 ], |
| 41 }, | 44 }, |
| 42 ], | 45 ], |
| 43 'conditions': [ | 46 'conditions': [ |
| 44 [ 'OS=="linux"', { | 47 [ 'OS=="linux"', { |
| 45 'targets': [ | 48 'targets': [ |
| 46 { | 49 { |
| 47 # GN version: //components/exo:wayland | 50 # GN version: //components/exo:wayland |
| 48 'target_name': 'exo_wayland', | 51 'target_name': 'exo_wayland', |
| 49 'type': 'static_library', | 52 'type': 'static_library', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 61 'exo/wayland/scoped_wl_types.cc', | 64 'exo/wayland/scoped_wl_types.cc', |
| 62 'exo/wayland/scoped_wl_types.h', | 65 'exo/wayland/scoped_wl_types.h', |
| 63 'exo/wayland/server.cc', | 66 'exo/wayland/server.cc', |
| 64 'exo/wayland/server.h', | 67 'exo/wayland/server.h', |
| 65 ], | 68 ], |
| 66 }, | 69 }, |
| 67 ], | 70 ], |
| 68 }], | 71 }], |
| 69 ], | 72 ], |
| 70 } | 73 } |
| OLD | NEW |