| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 'command_buffer/service/texture_manager.cc', | 235 'command_buffer/service/texture_manager.cc', |
| 236 'command_buffer/service/vertex_attrib_manager.h', | 236 'command_buffer/service/vertex_attrib_manager.h', |
| 237 'command_buffer/service/vertex_attrib_manager.cc', | 237 'command_buffer/service/vertex_attrib_manager.cc', |
| 238 ], | 238 ], |
| 239 'conditions': [ | 239 'conditions': [ |
| 240 ['toolkit_uses_gtk == 1', { | 240 ['toolkit_uses_gtk == 1', { |
| 241 'dependencies': [ | 241 'dependencies': [ |
| 242 '../build/linux/system.gyp:gtk', | 242 '../build/linux/system.gyp:gtk', |
| 243 ], | 243 ], |
| 244 }], | 244 }], |
| 245 ['touchui==1', { | 245 ['ui_compositor_image_transport==1', { |
| 246 'include_dirs': [ | 246 'include_dirs': [ |
| 247 '<(DEPTH)/third_party/angle/include', | 247 '<(DEPTH)/third_party/angle/include', |
| 248 ], | 248 ], |
| 249 }], | 249 }], |
| 250 ], | 250 ], |
| 251 }, | 251 }, |
| 252 { | 252 { |
| 253 'target_name': 'gpu_unittests', | 253 'target_name': 'gpu_unittests', |
| 254 'type': 'executable', | 254 'type': 'executable', |
| 255 'dependencies': [ | 255 'dependencies': [ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 'include_dirs': [ | 346 'include_dirs': [ |
| 347 '..', | 347 '..', |
| 348 ], | 348 ], |
| 349 'sources': [ | 349 'sources': [ |
| 350 'ipc/gpu_command_buffer_traits.cc', | 350 'ipc/gpu_command_buffer_traits.cc', |
| 351 'ipc/gpu_command_buffer_traits.h', | 351 'ipc/gpu_command_buffer_traits.h', |
| 352 ], | 352 ], |
| 353 }, | 353 }, |
| 354 ], | 354 ], |
| 355 } | 355 } |
| OLD | NEW |