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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 'command_buffer/service/renderbuffer_manager.h', | 223 'command_buffer/service/renderbuffer_manager.h', |
224 'command_buffer/service/renderbuffer_manager.cc', | 224 'command_buffer/service/renderbuffer_manager.cc', |
225 'command_buffer/service/shader_manager.h', | 225 'command_buffer/service/shader_manager.h', |
226 'command_buffer/service/shader_manager.cc', | 226 'command_buffer/service/shader_manager.cc', |
227 'command_buffer/service/shader_translator.h', | 227 'command_buffer/service/shader_translator.h', |
228 'command_buffer/service/shader_translator.cc', | 228 'command_buffer/service/shader_translator.cc', |
229 'command_buffer/service/texture_manager.h', | 229 'command_buffer/service/texture_manager.h', |
230 'command_buffer/service/texture_manager.cc', | 230 'command_buffer/service/texture_manager.cc', |
231 ], | 231 ], |
232 'conditions': [ | 232 'conditions': [ |
233 ['OS == "linux"', { | 233 ['toolkit_uses_gtk == 1', { |
234 'dependencies': [ | 234 'dependencies': [ |
235 '../build/linux/system.gyp:gtk', | 235 '../build/linux/system.gyp:gtk', |
236 ], | 236 ], |
237 }], | 237 }], |
238 ], | 238 ], |
239 }, | 239 }, |
240 { | 240 { |
241 'target_name': 'gpu_unittests', | 241 'target_name': 'gpu_unittests', |
242 'type': 'executable', | 242 'type': 'executable', |
243 'dependencies': [ | 243 'dependencies': [ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 }, | 374 }, |
375 ], | 375 ], |
376 ], | 376 ], |
377 } | 377 } |
378 | 378 |
379 # Local Variables: | 379 # Local Variables: |
380 # tab-width:2 | 380 # tab-width:2 |
381 # indent-tabs-mode:nil | 381 # indent-tabs-mode:nil |
382 # End: | 382 # End: |
383 # vim: set expandtab tabstop=2 shiftwidth=2: | 383 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |