OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
7 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 7 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
8 }, # variables | 8 }, # variables |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'content_gpu', | 11 'target_name': 'content_gpu', |
12 'type': '<(library)', | 12 'type': '<(library)', |
13 'msvs_guid': 'F10F1ECD-D84D-4C33-8468-9DDFE19F4D8A', | 13 'msvs_guid': 'F10F1ECD-D84D-4C33-8468-9DDFE19F4D8A', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'content_common', | 15 'content_common', |
16 '../app/app.gyp:app_base', | 16 '../app/app.gyp:app_base', |
17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
18 '../media/media.gyp:media', | 18 '../media/media.gyp:media', |
19 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
| 22 'gpu/content_gpu_client.h', |
22 'gpu/gpu_channel.cc', | 23 'gpu/gpu_channel.cc', |
23 'gpu/gpu_channel.h', | 24 'gpu/gpu_channel.h', |
24 'gpu/gpu_command_buffer_stub.cc', | 25 'gpu/gpu_command_buffer_stub.cc', |
25 'gpu/gpu_command_buffer_stub.h', | 26 'gpu/gpu_command_buffer_stub.h', |
26 'gpu/gpu_config.h', | 27 'gpu/gpu_config.h', |
27 'gpu/gpu_dx_diagnostics_win.cc', | 28 'gpu/gpu_dx_diagnostics_win.cc', |
28 'gpu/gpu_info_collector_linux.cc', | 29 'gpu/gpu_info_collector_linux.cc', |
29 'gpu/gpu_info_collector_mac.mm', | 30 'gpu/gpu_info_collector_mac.mm', |
30 'gpu/gpu_info_collector_win.cc', | 31 'gpu/gpu_info_collector_win.cc', |
31 'gpu/gpu_info_collector.cc', | 32 'gpu/gpu_info_collector.cc', |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 }], | 120 }], |
120 ['enable_gpu==1', { | 121 ['enable_gpu==1', { |
121 'dependencies': [ | 122 'dependencies': [ |
122 '../gpu/gpu.gyp:command_buffer_service', | 123 '../gpu/gpu.gyp:command_buffer_service', |
123 ], | 124 ], |
124 }], | 125 }], |
125 ], | 126 ], |
126 }, | 127 }, |
127 ], | 128 ], |
128 } | 129 } |
OLD | NEW |