OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../gpu/gpu.gyp:command_buffer_traits', | 8 '../gpu/gpu.gyp:command_buffer_traits', |
9 '../gpu/gpu.gyp:gpu', | 9 '../gpu/gpu.gyp:gpu', |
10 '../gpu/gpu.gyp:gpu_ipc_service', | 10 '../gpu/gpu.gyp:gpu_ipc_service', |
11 '../skia/skia.gyp:skia', | 11 '../skia/skia.gyp:skia', |
12 '../ui/gl/gl.gyp:gl', | 12 '../ui/gl/gl.gyp:gl', |
13 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', | 13 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', |
14 ], | 14 ], |
15 'sources': [ | 15 'sources': [ |
16 'gpu/gpu_child_thread.cc', | 16 'gpu/gpu_child_thread.cc', |
17 'gpu/gpu_child_thread.h', | 17 'gpu/gpu_child_thread.h', |
18 'gpu/gpu_main.cc', | 18 'gpu/gpu_main.cc', |
19 'gpu/gpu_process.cc', | 19 'gpu/gpu_process.cc', |
20 'gpu/gpu_process.h', | 20 'gpu/gpu_process.h', |
21 'gpu/gpu_process_control_impl.cc', | 21 'gpu/gpu_process_control_impl.cc', |
22 'gpu/gpu_process_control_impl.h', | 22 'gpu/gpu_process_control_impl.h', |
23 'gpu/gpu_watchdog_thread.cc', | 23 'gpu/gpu_watchdog_thread.cc', |
24 'gpu/gpu_watchdog_thread.h', | 24 'gpu/gpu_watchdog_thread.h', |
25 'gpu/in_process_gpu_thread.cc', | 25 'gpu/in_process_gpu_thread.cc', |
26 'gpu/in_process_gpu_thread.h', | 26 'gpu/in_process_gpu_thread.h', |
| 27 'public/gpu/content_gpu_client.cc', |
27 'public/gpu/content_gpu_client.h', | 28 'public/gpu/content_gpu_client.h', |
28 'public/gpu/gpu_video_decode_accelerator_factory.cc', | 29 'public/gpu/gpu_video_decode_accelerator_factory.cc', |
29 'public/gpu/gpu_video_decode_accelerator_factory.h', | 30 'public/gpu/gpu_video_decode_accelerator_factory.h', |
30 ], | 31 ], |
31 'include_dirs': [ | 32 'include_dirs': [ |
32 '..', | 33 '..', |
33 ], | 34 ], |
34 'conditions': [ | 35 'conditions': [ |
35 ['OS=="win"', { | 36 ['OS=="win"', { |
36 'include_dirs': [ | 37 'include_dirs': [ |
37 '<(DEPTH)/third_party/khronos', | 38 '<(DEPTH)/third_party/khronos', |
38 # ANGLE libs picked up from ui/gl | 39 # ANGLE libs picked up from ui/gl |
39 '<(angle_path)/src', | 40 '<(angle_path)/src', |
40 '<(DEPTH)/third_party/wtl/include', | 41 '<(DEPTH)/third_party/wtl/include', |
41 ], | 42 ], |
42 'link_settings': { | 43 'link_settings': { |
43 'libraries': [ | 44 'libraries': [ |
44 '-lsetupapi.lib', | 45 '-lsetupapi.lib', |
45 ], | 46 ], |
46 }, | 47 }, |
47 }], | 48 }], |
48 ['target_arch!="arm" and chromeos == 1', { | 49 ['target_arch!="arm" and chromeos == 1', { |
49 'include_dirs': [ | 50 'include_dirs': [ |
50 '<(DEPTH)/third_party/libva', | 51 '<(DEPTH)/third_party/libva', |
51 ], | 52 ], |
52 }], | 53 }], |
53 ], | 54 ], |
54 } | 55 } |
OLD | NEW |