| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 ], | 214 ], |
| 215 'conditions': [ | 215 'conditions': [ |
| 216 ['OS == "linux"', { | 216 ['OS == "linux"', { |
| 217 'dependencies': [ | 217 'dependencies': [ |
| 218 '../build/linux/system.gyp:gtk', | 218 '../build/linux/system.gyp:gtk', |
| 219 ], | 219 ], |
| 220 }], | 220 }], |
| 221 ], | 221 ], |
| 222 }, | 222 }, |
| 223 { | 223 { |
| 224 'target_name': 'gpu_plugin', | |
| 225 'type': 'static_library', | |
| 226 'dependencies': [ | |
| 227 '../base/base.gyp:base', | |
| 228 'command_buffer_service', | |
| 229 ], | |
| 230 'include_dirs': [ | |
| 231 '..', | |
| 232 ], | |
| 233 'all_dependent_settings': { | |
| 234 'include_dirs': [ | |
| 235 '..', | |
| 236 ], | |
| 237 }, | |
| 238 'sources': [ | |
| 239 'gpu_plugin/gpu_plugin.cc', | |
| 240 'gpu_plugin/gpu_plugin.h', | |
| 241 ], | |
| 242 }, | |
| 243 { | |
| 244 'target_name': 'gpu_unittests', | 224 'target_name': 'gpu_unittests', |
| 245 'type': 'executable', | 225 'type': 'executable', |
| 246 'dependencies': [ | 226 'dependencies': [ |
| 247 '../app/app.gyp:app_base', | 227 '../app/app.gyp:app_base', |
| 248 '../testing/gmock.gyp:gmock', | 228 '../testing/gmock.gyp:gmock', |
| 249 '../testing/gmock.gyp:gmock_main', | 229 '../testing/gmock.gyp:gmock_main', |
| 250 '../testing/gtest.gyp:gtest', | 230 '../testing/gtest.gyp:gtest', |
| 251 'command_buffer_client', | 231 'command_buffer_client', |
| 252 'command_buffer_common', | 232 'command_buffer_common', |
| 253 'command_buffer_service', | 233 'command_buffer_service', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 }, | 385 }, |
| 406 ], | 386 ], |
| 407 ], | 387 ], |
| 408 } | 388 } |
| 409 | 389 |
| 410 # Local Variables: | 390 # Local Variables: |
| 411 # tab-width:2 | 391 # tab-width:2 |
| 412 # indent-tabs-mode:nil | 392 # indent-tabs-mode:nil |
| 413 # End: | 393 # End: |
| 414 # vim: set expandtab tabstop=2 shiftwidth=2: | 394 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |