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 21 matching lines...) Expand all Loading... |
32 'include_dirs': [ | 32 'include_dirs': [ |
33 '<(DEPTH)/third_party/khronos', | 33 '<(DEPTH)/third_party/khronos', |
34 ], | 34 ], |
35 'all_dependent_settings': { | 35 'all_dependent_settings': { |
36 'include_dirs': [ | 36 'include_dirs': [ |
37 '<(DEPTH)/third_party/khronos', | 37 '<(DEPTH)/third_party/khronos', |
38 ], | 38 ], |
39 }, | 39 }, |
40 'dependencies': [ | 40 'dependencies': [ |
41 '../base/base.gyp:base', | 41 '../base/base.gyp:base', |
| 42 'command_buffer/command_buffer.gyp:gles2_utils', |
42 ], | 43 ], |
43 'export_dependent_settings': [ | 44 'export_dependent_settings': [ |
44 '../base/base.gyp:base', | 45 '../base/base.gyp:base', |
45 ], | 46 ], |
46 'sources': [ | 47 'sources': [ |
47 'command_buffer/common/bitfield_helpers.h', | 48 'command_buffer/common/bitfield_helpers.h', |
48 'command_buffer/common/buffer.h', | 49 'command_buffer/common/buffer.h', |
49 'command_buffer/common/cmd_buffer_common.h', | 50 'command_buffer/common/cmd_buffer_common.h', |
50 'command_buffer/common/cmd_buffer_common.cc', | 51 'command_buffer/common/cmd_buffer_common.cc', |
51 'command_buffer/common/command_buffer.h', | 52 'command_buffer/common/command_buffer.h', |
52 'command_buffer/common/constants.h', | 53 'command_buffer/common/constants.h', |
53 'command_buffer/common/gles2_cmd_ids_autogen.h', | 54 'command_buffer/common/gles2_cmd_ids_autogen.h', |
54 'command_buffer/common/gles2_cmd_ids.h', | 55 'command_buffer/common/gles2_cmd_ids.h', |
55 'command_buffer/common/gles2_cmd_format_autogen.h', | 56 'command_buffer/common/gles2_cmd_format_autogen.h', |
56 'command_buffer/common/gles2_cmd_format.cc', | 57 'command_buffer/common/gles2_cmd_format.cc', |
57 'command_buffer/common/gles2_cmd_format.h', | 58 'command_buffer/common/gles2_cmd_format.h', |
58 'command_buffer/common/gles2_cmd_utils.cc', | |
59 'command_buffer/common/gles2_cmd_utils.h', | |
60 'command_buffer/common/id_allocator.cc', | 59 'command_buffer/common/id_allocator.cc', |
61 'command_buffer/common/id_allocator.h', | 60 'command_buffer/common/id_allocator.h', |
62 'command_buffer/common/logging.cc', | |
63 'command_buffer/common/logging.h', | |
64 'command_buffer/common/thread_local.h', | 61 'command_buffer/common/thread_local.h', |
65 'command_buffer/common/types.h', | 62 'command_buffer/common/types.h', |
66 ], | 63 ], |
67 }, | 64 }, |
68 { | 65 { |
69 # Library helps make GLES2 command buffers. | 66 # Library helps make GLES2 command buffers. |
70 'target_name': 'gles2_cmd_helper', | 67 'target_name': 'gles2_cmd_helper', |
71 'type': 'static_library', | 68 'type': 'static_library', |
72 'dependencies': [ | 69 'dependencies': [ |
73 'command_buffer_client', | 70 'command_buffer_client', |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 '..', | 349 '..', |
353 '<(DEPTH)/third_party/khronos', | 350 '<(DEPTH)/third_party/khronos', |
354 ], | 351 ], |
355 'sources': [ | 352 'sources': [ |
356 'ipc/gpu_command_buffer_traits.cc', | 353 'ipc/gpu_command_buffer_traits.cc', |
357 'ipc/gpu_command_buffer_traits.h', | 354 'ipc/gpu_command_buffer_traits.h', |
358 ], | 355 ], |
359 }, | 356 }, |
360 ], | 357 ], |
361 } | 358 } |
OLD | NEW |