| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # Library emulates GLES2 using command_buffers. | 8 # Library emulates GLES2 using command_buffers. |
| 9 'target_name': 'gles2_implementation', | 9 'target_name': 'gles2_implementation', |
| 10 'type': '<(component)', | 10 'type': '<(component)', |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'gles2_cmd_helper', | 216 'gles2_cmd_helper', |
| 217 ], | 217 ], |
| 218 'defines': [ | 218 'defines': [ |
| 219 'GLES2_C_LIB_IMPLEMENTATION', | 219 'GLES2_C_LIB_IMPLEMENTATION', |
| 220 ], | 220 ], |
| 221 'sources': [ | 221 'sources': [ |
| 222 '<@(gles2_c_lib_source_files)', | 222 '<@(gles2_c_lib_source_files)', |
| 223 'command_buffer/tests/gl_tests_main.cc', | 223 'command_buffer/tests/gl_tests_main.cc', |
| 224 'command_buffer/tests/gl_manager.cc', | 224 'command_buffer/tests/gl_manager.cc', |
| 225 'command_buffer/tests/gl_manager.h', | 225 'command_buffer/tests/gl_manager.h', |
| 226 'command_buffer/tests/gl_texture_mailbox_unittests.cc', |
| 226 'command_buffer/tests/gl_unittests.cc', | 227 'command_buffer/tests/gl_unittests.cc', |
| 227 ], | 228 ], |
| 228 }, | 229 }, |
| 229 { | 230 { |
| 230 'target_name': 'gpu_unittest_utils', | 231 'target_name': 'gpu_unittest_utils', |
| 231 'type': 'static_library', | 232 'type': 'static_library', |
| 232 'dependencies': [ | 233 'dependencies': [ |
| 233 '../testing/gmock.gyp:gmock', | 234 '../testing/gmock.gyp:gmock', |
| 234 '../testing/gtest.gyp:gtest', | 235 '../testing/gtest.gyp:gtest', |
| 235 '../ui/gfx/gl/gl.gyp:gl', | 236 '../ui/gfx/gl/gl.gyp:gl', |
| 236 ], | 237 ], |
| 237 'include_dirs': [ | 238 'include_dirs': [ |
| 238 '..', | 239 '..', |
| 239 '<(DEPTH)/third_party/khronos', | 240 '<(DEPTH)/third_party/khronos', |
| 240 ], | 241 ], |
| 241 'sources': [ | 242 'sources': [ |
| 242 'command_buffer/common/gl_mock.h', | 243 'command_buffer/common/gl_mock.h', |
| 243 'command_buffer/common/gl_mock.cc', | 244 'command_buffer/common/gl_mock.cc', |
| 244 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 245 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 245 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 246 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 246 ], | 247 ], |
| 247 }, | 248 }, |
| 248 ], | 249 ], |
| 249 } | 250 } |
| OLD | NEW |