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 '../media/gpu/ipc/media_ipc.gyp:media_gpu_ipc_service', | 11 '../media/gpu/ipc/media_ipc.gyp:media_gpu_ipc_service', |
12 '../media/media.gyp:media_gpu', | 12 '../media/media.gyp:media_gpu', |
13 '../skia/skia.gyp:skia', | 13 '../skia/skia.gyp:skia', |
14 '../ui/gl/gl.gyp:gl', | 14 '../ui/gl/gl.gyp:gl', |
15 '../ui/gl/init/gl_init.gyp:gl_init', | 15 '../ui/gl/init/gl_init.gyp:gl_init', |
16 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', | 16 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'gpu/gpu_child_thread.cc', | 19 'gpu/gpu_child_thread.cc', |
20 'gpu/gpu_child_thread.h', | 20 'gpu/gpu_child_thread.h', |
21 'gpu/gpu_main.cc', | 21 'gpu/gpu_main.cc', |
22 'gpu/gpu_process.cc', | 22 'gpu/gpu_process.cc', |
23 'gpu/gpu_process.h', | 23 'gpu/gpu_process.h', |
24 'gpu/gpu_service_factory.cc', | 24 'gpu/gpu_service_factory.cc', |
25 'gpu/gpu_service_factory.h', | 25 'gpu/gpu_service_factory.h', |
26 'gpu/gpu_watchdog_thread.cc', | |
27 'gpu/gpu_watchdog_thread.h', | |
28 'gpu/in_process_gpu_thread.cc', | 26 'gpu/in_process_gpu_thread.cc', |
29 'gpu/in_process_gpu_thread.h', | 27 'gpu/in_process_gpu_thread.h', |
30 'public/gpu/content_gpu_client.cc', | 28 'public/gpu/content_gpu_client.cc', |
31 'public/gpu/content_gpu_client.h', | 29 'public/gpu/content_gpu_client.h', |
32 ], | 30 ], |
33 'include_dirs': [ | 31 'include_dirs': [ |
34 '..', | 32 '..', |
35 ], | 33 ], |
36 'conditions': [ | 34 'conditions': [ |
37 ['OS=="win"', { | 35 ['OS=="win"', { |
(...skipping 14 matching lines...) Expand all Loading... |
52 '<(DEPTH)/third_party/libva', | 50 '<(DEPTH)/third_party/libva', |
53 ], | 51 ], |
54 }], | 52 }], |
55 ['OS=="android"', { | 53 ['OS=="android"', { |
56 'dependencies': [ | 54 'dependencies': [ |
57 '<(DEPTH)/media/media.gyp:player_android', | 55 '<(DEPTH)/media/media.gyp:player_android', |
58 ], | 56 ], |
59 }], | 57 }], |
60 ], | 58 ], |
61 } | 59 } |
OLD | NEW |