OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'webkit_gpu', | 8 'target_name': 'webkit_gpu', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '<(DEPTH)/base/base.gyp:base', | 11 '<(DEPTH)/base/base.gyp:base', |
| 12 '<(DEPTH)/gpu/gpu.gyp:command_buffer_service', |
| 13 '<(DEPTH)/gpu/gpu.gyp:command_buffer_client', |
| 14 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', |
12 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_common', | 15 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_common', |
13 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl', | 16 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl', |
14 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', | 17 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', |
15 ], | 18 ], |
| 19 'include_dirs': [ |
| 20 '<(DEPTH)/skia/config', |
| 21 ], |
16 'sources': [ | 22 'sources': [ |
17 # This list contains all .h and .cc in gpu except for test code. | 23 # This list contains all .h and .cc in gpu except for test code. |
18 'webgraphicscontext3d_in_process_command_buffer_impl.cc', | 24 'webgraphicscontext3d_in_process_command_buffer_impl.cc', |
19 'webgraphicscontext3d_in_process_command_buffer_impl.h', | 25 'webgraphicscontext3d_in_process_command_buffer_impl.h', |
20 'webgraphicscontext3d_in_process_impl.cc', | 26 'webgraphicscontext3d_in_process_impl.cc', |
21 'webgraphicscontext3d_in_process_impl.h', | 27 'webgraphicscontext3d_in_process_impl.h', |
22 'webkit_gpu.gypi', | 28 'webkit_gpu.gypi', |
23 ], | 29 ], |
24 'conditions': [ | 30 'conditions': [ |
25 ['inside_chromium_build==0', { | 31 ['inside_chromium_build==0', { |
26 'dependencies': [ | 32 'dependencies': [ |
27 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 33 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
28 ], | 34 ], |
29 }], | 35 }], |
30 ], | 36 ], |
31 }, | 37 }, |
32 ], | 38 ], |
33 } | 39 } |
OLD | NEW |