| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # TODO(stuartmorgan): All dependencies from code built on iOS to | 7 # TODO(stuartmorgan): All dependencies from code built on iOS to |
| 8 # webkit/ should be removed, at which point this condition can be | 8 # webkit/ should be removed, at which point this condition can be |
| 9 # removed. | 9 # removed. |
| 10 ['OS != "ios"', { | 10 ['OS != "ios"', { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 35 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 36 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 36 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 37 ], | 37 ], |
| 38 'sources': [ | 38 'sources': [ |
| 39 # This list contains all .h and .cc in gpu except for test code. | 39 # This list contains all .h and .cc in gpu except for test code. |
| 40 'context_provider_in_process.cc', | 40 'context_provider_in_process.cc', |
| 41 'context_provider_in_process.h', | 41 'context_provider_in_process.h', |
| 42 'context_provider_web_context.h', | 42 'context_provider_web_context.h', |
| 43 'grcontext_for_webgraphicscontext3d.cc', | 43 'grcontext_for_webgraphicscontext3d.cc', |
| 44 'grcontext_for_webgraphicscontext3d.h', | 44 'grcontext_for_webgraphicscontext3d.h', |
| 45 'webgraphicscontext3d_in_process_command_buffer_impl.cc', | |
| 46 'webgraphicscontext3d_in_process_command_buffer_impl.h', | |
| 47 ], | 45 ], |
| 48 'defines': [ | 46 'defines': [ |
| 49 'WEBKIT_GPU_IMPLEMENTATION', | 47 'WEBKIT_GPU_IMPLEMENTATION', |
| 50 ], | 48 ], |
| 51 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 49 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 52 'msvs_disabled_warnings': [ 4267, ], | 50 'msvs_disabled_warnings': [ 4267, ], |
| 53 }, | 51 }, |
| 54 ], | 52 ], |
| 55 }], | 53 }], |
| 56 ], | 54 ], |
| 57 } | 55 } |
| OLD | NEW |