| 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 'gpu_plugin/gpu_plugin.cc', | 206 'gpu_plugin/gpu_plugin.cc', |
| 207 'gpu_plugin/gpu_plugin.h', | 207 'gpu_plugin/gpu_plugin.h', |
| 208 ], | 208 ], |
| 209 }, | 209 }, |
| 210 { | 210 { |
| 211 'target_name': 'gpu_unittests', | 211 'target_name': 'gpu_unittests', |
| 212 'type': 'executable', | 212 'type': 'executable', |
| 213 'dependencies': [ | 213 'dependencies': [ |
| 214 '../app/app.gyp:app_base', | 214 '../app/app.gyp:app_base', |
| 215 '../testing/gmock.gyp:gmock', | 215 '../testing/gmock.gyp:gmock', |
| 216 '../testing/gmock.gyp:gmockmain', | 216 '../testing/gmock.gyp:gmock_main', |
| 217 '../testing/gtest.gyp:gtest', | 217 '../testing/gtest.gyp:gtest', |
| 218 'command_buffer_client', | 218 'command_buffer_client', |
| 219 'command_buffer_common', | 219 'command_buffer_common', |
| 220 'command_buffer_service', | 220 'command_buffer_service', |
| 221 'gles2_lib', | 221 'gles2_lib', |
| 222 'gles2_implementation', | 222 'gles2_implementation', |
| 223 'gles2_cmd_helper', | 223 'gles2_cmd_helper', |
| 224 ], | 224 ], |
| 225 'sources': [ | 225 'sources': [ |
| 226 'command_buffer/client/cmd_buffer_helper_test.cc', | 226 'command_buffer/client/cmd_buffer_helper_test.cc', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 }, | 337 }, |
| 338 ], | 338 ], |
| 339 ], | 339 ], |
| 340 } | 340 } |
| 341 | 341 |
| 342 # Local Variables: | 342 # Local Variables: |
| 343 # tab-width:2 | 343 # tab-width:2 |
| 344 # indent-tabs-mode:nil | 344 # indent-tabs-mode:nil |
| 345 # End: | 345 # End: |
| 346 # vim: set expandtab tabstop=2 shiftwidth=2: | 346 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |