| 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 16 matching lines...) Expand all Loading... |
| 27 '<(DEPTH)/ui/ui.gyp:ui', | 27 '<(DEPTH)/ui/ui.gyp:ui', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 # This list contains all .h and .cc in gpu except for test code. | 30 # This list contains all .h and .cc in gpu except for test code. |
| 31 'context_provider_in_process.cc', | 31 'context_provider_in_process.cc', |
| 32 'context_provider_in_process.h', | 32 'context_provider_in_process.h', |
| 33 'gl_bindings_skia_cmd_buffer.cc', | 33 'gl_bindings_skia_cmd_buffer.cc', |
| 34 'gl_bindings_skia_cmd_buffer.h', | 34 'gl_bindings_skia_cmd_buffer.h', |
| 35 'grcontext_for_webgraphicscontext3d.cc', | 35 'grcontext_for_webgraphicscontext3d.cc', |
| 36 'grcontext_for_webgraphicscontext3d.h', | 36 'grcontext_for_webgraphicscontext3d.h', |
| 37 'managed_memory_policy_convert.cc', |
| 38 'managed_memory_policy_convert.h', |
| 37 'test_context_provider_factory.cc', | 39 'test_context_provider_factory.cc', |
| 38 'test_context_provider_factory.h', | 40 'test_context_provider_factory.h', |
| 39 'webgraphicscontext3d_in_process_command_buffer_impl.cc', | 41 'webgraphicscontext3d_in_process_command_buffer_impl.cc', |
| 40 'webgraphicscontext3d_in_process_command_buffer_impl.h', | 42 'webgraphicscontext3d_in_process_command_buffer_impl.h', |
| 41 'webgraphicscontext3d_provider_impl.cc', | 43 'webgraphicscontext3d_provider_impl.cc', |
| 42 'webgraphicscontext3d_provider_impl.h', | 44 'webgraphicscontext3d_provider_impl.h', |
| 43 ], | 45 ], |
| 44 'defines': [ | 46 'defines': [ |
| 45 'WEBKIT_GPU_IMPLEMENTATION', | 47 'WEBKIT_GPU_IMPLEMENTATION', |
| 46 ], | 48 ], |
| 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 49 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 48 'msvs_disabled_warnings': [ 4267, ], | 50 'msvs_disabled_warnings': [ 4267, ], |
| 49 }, | 51 }, |
| 50 ], | 52 ], |
| 51 }], | 53 }], |
| 52 ], | 54 ], |
| 53 } | 55 } |
| OLD | NEW |