| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS != "ios"', { | 7 ['OS != "ios"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # GN version: //gpu/blink | 10 # GN version: //gpu/blink |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', | 28 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
| 29 '<(angle_path)/src/angle.gyp:translator', | 29 '<(angle_path)/src/angle.gyp:translator', |
| 30 '<(DEPTH)/ui/gl/gl.gyp:gl', | 30 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 31 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 31 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 32 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 32 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 33 ], | 33 ], |
| 34 'sources': [ | 34 'sources': [ |
| 35 'gpu_blink_export.h', | 35 'gpu_blink_export.h', |
| 36 'webgraphicscontext3d_impl.cc', | 36 'webgraphicscontext3d_impl.cc', |
| 37 'webgraphicscontext3d_impl.h', | 37 'webgraphicscontext3d_impl.h', |
| 38 'webgraphicscontext3d_in_process_command_buffer_impl.cc', | |
| 39 'webgraphicscontext3d_in_process_command_buffer_impl.h', | |
| 40 ], | 38 ], |
| 41 'defines': [ | 39 'defines': [ |
| 42 'GPU_BLINK_IMPLEMENTATION', | 40 'GPU_BLINK_IMPLEMENTATION', |
| 43 ], | 41 ], |
| 44 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 45 'msvs_disabled_warnings': [ 4267, ], | 43 'msvs_disabled_warnings': [ 4267, ], |
| 46 }, | 44 }, |
| 47 ], | 45 ], |
| 48 }], | 46 }], |
| 49 ], | 47 ], |
| 50 } | 48 } |
| OLD | NEW |