| 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 'include_dirs': [ | 6 'include_dirs': [ |
| 7 '<(DEPTH)/third_party/khronos', | 7 '<(DEPTH)/third_party/khronos', |
| 8 ], | 8 ], |
| 9 'all_dependent_settings': { | 9 'all_dependent_settings': { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '<(DEPTH)/third_party/khronos', | 11 '<(DEPTH)/third_party/khronos', |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 'dependencies': [ | |
| 15 '../base/base.gyp:base', | |
| 16 'command_buffer/command_buffer.gyp:gles2_utils', | |
| 17 ], | |
| 18 'sources': [ | 14 'sources': [ |
| 19 'command_buffer/common/bitfield_helpers.h', | 15 'command_buffer/common/bitfield_helpers.h', |
| 20 'command_buffer/common/buffer.h', | 16 'command_buffer/common/buffer.h', |
| 21 'command_buffer/common/cmd_buffer_common.h', | 17 'command_buffer/common/cmd_buffer_common.h', |
| 22 'command_buffer/common/cmd_buffer_common.cc', | 18 'command_buffer/common/cmd_buffer_common.cc', |
| 23 'command_buffer/common/command_buffer.h', | 19 'command_buffer/common/command_buffer.h', |
| 24 'command_buffer/common/compiler_specific.h', | 20 'command_buffer/common/compiler_specific.h', |
| 25 'command_buffer/common/constants.h', | 21 'command_buffer/common/constants.h', |
| 26 'command_buffer/common/gles2_cmd_ids_autogen.h', | 22 'command_buffer/common/gles2_cmd_ids_autogen.h', |
| 27 'command_buffer/common/gles2_cmd_ids.h', | 23 'command_buffer/common/gles2_cmd_ids.h', |
| 28 'command_buffer/common/gles2_cmd_format_autogen.h', | 24 'command_buffer/common/gles2_cmd_format_autogen.h', |
| 29 'command_buffer/common/gles2_cmd_format.cc', | 25 'command_buffer/common/gles2_cmd_format.cc', |
| 30 'command_buffer/common/gles2_cmd_format.h', | 26 'command_buffer/common/gles2_cmd_format.h', |
| 31 'command_buffer/common/id_allocator.cc', | 27 'command_buffer/common/id_allocator.cc', |
| 32 'command_buffer/common/id_allocator.h', | 28 'command_buffer/common/id_allocator.h', |
| 33 'command_buffer/common/thread_local.h', | 29 'command_buffer/common/thread_local.h', |
| 34 'command_buffer/common/types.h', | 30 'command_buffer/common/types.h', |
| 35 ], | 31 ], |
| 36 } | 32 } |
| OLD | NEW |