| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../ipc/ipc.gyp:ipc', | 8 '../ipc/ipc.gyp:ipc', |
| 9 '../third_party/khronos/khronos.gyp:khronos_headers', | 9 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 10 '../ui/base/ui_base.gyp:ui_base', | 10 '../ui/base/ui_base.gyp:ui_base', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'ipc/client/gpu_memory_buffer_impl_surface_texture.cc', | 45 'ipc/client/gpu_memory_buffer_impl_surface_texture.cc', |
| 46 'ipc/client/gpu_memory_buffer_impl_surface_texture.h', | 46 'ipc/client/gpu_memory_buffer_impl_surface_texture.h', |
| 47 'ipc/client/android/in_process_surface_texture_manager.cc', | 47 'ipc/client/android/in_process_surface_texture_manager.cc', |
| 48 'ipc/client/android/in_process_surface_texture_manager.h', | 48 'ipc/client/android/in_process_surface_texture_manager.h', |
| 49 ], | 49 ], |
| 50 }], | 50 }], |
| 51 ['OS == "mac"', { | 51 ['OS == "mac"', { |
| 52 'sources+': [ | 52 'sources+': [ |
| 53 'ipc/client/gpu_memory_buffer_impl_io_surface.cc', | 53 'ipc/client/gpu_memory_buffer_impl_io_surface.cc', |
| 54 'ipc/client/gpu_memory_buffer_impl_io_surface.h', | 54 'ipc/client/gpu_memory_buffer_impl_io_surface.h', |
| 55 'ipc/client/gpu_process_hosted_ca_layer_tree_params.cc', |
| 56 'ipc/client/gpu_process_hosted_ca_layer_tree_params.h', |
| 55 ], | 57 ], |
| 56 }], | 58 }], |
| 57 ['use_ozone == 1', { | 59 ['use_ozone == 1', { |
| 58 'sources+': [ | 60 'sources+': [ |
| 59 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', | 61 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', |
| 60 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', | 62 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', |
| 61 ], | 63 ], |
| 62 'dependencies': [ | 64 'dependencies': [ |
| 63 '../ui/ozone/ozone.gyp:ozone_platform', | 65 '../ui/ozone/ozone.gyp:ozone_platform', |
| 64 ], | 66 ], |
| 65 }], | 67 }], |
| 66 ], | 68 ], |
| 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 69 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 68 'msvs_disabled_warnings': [4267, ], | 70 'msvs_disabled_warnings': [4267, ], |
| 69 } | 71 } |
| OLD | NEW |