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