| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # This is defined here because we need to compile this set of files | 8 # This is defined here because we need to compile this set of files |
| 9 # twice with different defines. Once so it calls real GL, again so it | 9 # twice with different defines. Once so it calls real GL, again so it |
| 10 # calls mock GL for the unit tests. | 10 # calls mock GL for the unit tests. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'command_buffer/service/mocks.h', | 243 'command_buffer/service/mocks.h', |
| 244 'command_buffer/service/precompile.cc', | 244 'command_buffer/service/precompile.cc', |
| 245 'command_buffer/service/precompile.h', | 245 'command_buffer/service/precompile.h', |
| 246 'command_buffer/service/resource.cc', | 246 'command_buffer/service/resource.cc', |
| 247 'command_buffer/service/resource.h', | 247 'command_buffer/service/resource.h', |
| 248 ], | 248 ], |
| 249 'conditions': [ | 249 'conditions': [ |
| 250 ['OS == "linux"', | 250 ['OS == "linux"', |
| 251 { | 251 { |
| 252 'sources': [ | 252 'sources': [ |
| 253 'command_buffer/service/gpu_processor_linux.cc', |
| 253 'command_buffer/service/x_utils.cc', | 254 'command_buffer/service/x_utils.cc', |
| 254 'command_buffer/service/x_utils.h', | 255 'command_buffer/service/x_utils.h', |
| 255 ], | 256 ], |
| 257 'dependencies': [ |
| 258 '../build/linux/system.gyp:gtk', |
| 259 ] |
| 256 }, | 260 }, |
| 257 ], | 261 ], |
| 258 ['OS == "win"', | 262 ['OS == "win"', |
| 259 { | 263 { |
| 260 'sources': [ | 264 'sources': [ |
| 261 'command_buffer/service/gpu_processor_win.cc', | 265 'command_buffer/service/gpu_processor_win.cc', |
| 262 ], | 266 ], |
| 263 }, | 267 }, |
| 264 ], | 268 ], |
| 265 ], | 269 ], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 }, | 380 }, |
| 377 ], | 381 ], |
| 378 ], | 382 ], |
| 379 } | 383 } |
| 380 | 384 |
| 381 # Local Variables: | 385 # Local Variables: |
| 382 # tab-width:2 | 386 # tab-width:2 |
| 383 # indent-tabs-mode:nil | 387 # indent-tabs-mode:nil |
| 384 # End: | 388 # End: |
| 385 # vim: set expandtab tabstop=2 shiftwidth=2: | 389 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |