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 { |
224 'target_name': 'gpu_unittests', | 244 'target_name': 'gpu_unittests', |
225 'type': 'executable', | 245 'type': 'executable', |
226 'dependencies': [ | 246 'dependencies': [ |
227 '../app/app.gyp:app_base', | 247 '../app/app.gyp:app_base', |
228 '../testing/gmock.gyp:gmock', | 248 '../testing/gmock.gyp:gmock', |
229 '../testing/gmock.gyp:gmock_main', | 249 '../testing/gmock.gyp:gmock_main', |
230 '../testing/gtest.gyp:gtest', | 250 '../testing/gtest.gyp:gtest', |
231 'command_buffer_client', | 251 'command_buffer_client', |
232 'command_buffer_common', | 252 'command_buffer_common', |
233 'command_buffer_service', | 253 'command_buffer_service', |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 }, | 405 }, |
386 ], | 406 ], |
387 ], | 407 ], |
388 } | 408 } |
389 | 409 |
390 # Local Variables: | 410 # Local Variables: |
391 # tab-width:2 | 411 # tab-width:2 |
392 # indent-tabs-mode:nil | 412 # indent-tabs-mode:nil |
393 # End: | 413 # End: |
394 # vim: set expandtab tabstop=2 shiftwidth=2: | 414 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |