| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 'include_dirs': [ | 174 'include_dirs': [ |
| 175 '..', | 175 '..', |
| 176 ], | 176 ], |
| 177 }, | 177 }, |
| 178 'dependencies': [ | 178 'dependencies': [ |
| 179 'command_buffer_common', | 179 'command_buffer_common', |
| 180 'gpu_common', | 180 'gpu_common', |
| 181 '../app/app.gyp:app_base', | 181 '../app/app.gyp:app_base', |
| 182 '../base/base.gyp:base', | 182 '../base/base.gyp:base', |
| 183 '../ui/ui.gyp:ui_gfx', | 183 '../ui/ui.gyp:ui_gfx', |
| 184 '../ui/gfx/surface/surface.gyp:surface', |
| 184 '../third_party/angle/src/build_angle.gyp:translator_glsl', | 185 '../third_party/angle/src/build_angle.gyp:translator_glsl', |
| 185 ], | 186 ], |
| 186 'sources': [ | 187 'sources': [ |
| 187 'command_buffer/service/buffer_manager.h', | 188 'command_buffer/service/buffer_manager.h', |
| 188 'command_buffer/service/buffer_manager.cc', | 189 'command_buffer/service/buffer_manager.cc', |
| 189 'command_buffer/service/framebuffer_manager.h', | 190 'command_buffer/service/framebuffer_manager.h', |
| 190 'command_buffer/service/framebuffer_manager.cc', | 191 'command_buffer/service/framebuffer_manager.cc', |
| 191 'command_buffer/service/cmd_buffer_engine.h', | 192 'command_buffer/service/cmd_buffer_engine.h', |
| 192 'command_buffer/service/cmd_parser.cc', | 193 'command_buffer/service/cmd_parser.cc', |
| 193 'command_buffer/service/cmd_parser.h', | 194 'command_buffer/service/cmd_parser.h', |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 }, | 402 }, |
| 402 ], | 403 ], |
| 403 ], | 404 ], |
| 404 } | 405 } |
| 405 | 406 |
| 406 # Local Variables: | 407 # Local Variables: |
| 407 # tab-width:2 | 408 # tab-width:2 |
| 408 # indent-tabs-mode:nil | 409 # indent-tabs-mode:nil |
| 409 # End: | 410 # End: |
| 410 # vim: set expandtab tabstop=2 shiftwidth=2: | 411 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |