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 25 matching lines...) Expand all Loading... |
36 # gpu_ipc_win64 must only link against the 64-bit ipc target. | 36 # gpu_ipc_win64 must only link against the 64-bit ipc target. |
37 'dependencies!': [ | 37 'dependencies!': [ |
38 '../base/base.gyp:base', | 38 '../base/base.gyp:base', |
39 '../ipc/ipc.gyp:ipc', | 39 '../ipc/ipc.gyp:ipc', |
40 ], | 40 ], |
41 }], | 41 }], |
42 ['OS == "android"', { | 42 ['OS == "android"', { |
43 'sources+': [ | 43 'sources+': [ |
44 'ipc/client/gpu_memory_buffer_impl_surface_texture.cc', | 44 'ipc/client/gpu_memory_buffer_impl_surface_texture.cc', |
45 'ipc/client/gpu_memory_buffer_impl_surface_texture.h', | 45 'ipc/client/gpu_memory_buffer_impl_surface_texture.h', |
| 46 'ipc/client/android/in_process_surface_texture_manager.cc', |
| 47 'ipc/client/android/in_process_surface_texture_manager.h', |
46 ], | 48 ], |
47 }], | 49 }], |
48 ['OS == "mac"', { | 50 ['OS == "mac"', { |
49 'sources+': [ | 51 'sources+': [ |
50 'ipc/client/gpu_memory_buffer_impl_io_surface.cc', | 52 'ipc/client/gpu_memory_buffer_impl_io_surface.cc', |
51 'ipc/client/gpu_memory_buffer_impl_io_surface.h', | 53 'ipc/client/gpu_memory_buffer_impl_io_surface.h', |
52 ], | 54 ], |
53 }], | 55 }], |
54 ['use_ozone == 1', { | 56 ['use_ozone == 1', { |
55 'sources+': [ | 57 'sources+': [ |
56 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', | 58 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', |
57 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', | 59 'ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', |
58 ], | 60 ], |
59 'dependencies': [ | 61 'dependencies': [ |
60 '../ui/ozone/ozone.gyp:ozone_platform', | 62 '../ui/ozone/ozone.gyp:ozone_platform', |
61 ], | 63 ], |
62 }], | 64 }], |
63 ], | 65 ], |
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
65 'msvs_disabled_warnings': [4267, ], | 67 'msvs_disabled_warnings': [4267, ], |
66 } | 68 } |
OLD | NEW |