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 '..', | 7 '..', |
8 ], | 8 ], |
9 'all_dependent_settings': { | 9 'all_dependent_settings': { |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'command_buffer/service/shader_translator_cache.h', | 115 'command_buffer/service/shader_translator_cache.h', |
116 'command_buffer/service/shader_translator_cache.cc', | 116 'command_buffer/service/shader_translator_cache.cc', |
117 'command_buffer/service/stream_texture_manager_in_process_android.h', | 117 'command_buffer/service/stream_texture_manager_in_process_android.h', |
118 'command_buffer/service/stream_texture_manager_in_process_android.cc', | 118 'command_buffer/service/stream_texture_manager_in_process_android.cc', |
119 'command_buffer/service/texture_definition.h', | 119 'command_buffer/service/texture_definition.h', |
120 'command_buffer/service/texture_definition.cc', | 120 'command_buffer/service/texture_definition.cc', |
121 'command_buffer/service/texture_manager.h', | 121 'command_buffer/service/texture_manager.h', |
122 'command_buffer/service/texture_manager.cc', | 122 'command_buffer/service/texture_manager.cc', |
123 'command_buffer/service/transfer_buffer_manager.cc', | 123 'command_buffer/service/transfer_buffer_manager.cc', |
124 'command_buffer/service/transfer_buffer_manager.h', | 124 'command_buffer/service/transfer_buffer_manager.h', |
| 125 'command_buffer/service/uniform_subscription_manager.h', |
| 126 'command_buffer/service/uniform_subscription_manager.cc', |
125 'command_buffer/service/vertex_array_manager.h', | 127 'command_buffer/service/vertex_array_manager.h', |
126 'command_buffer/service/vertex_array_manager.cc', | 128 'command_buffer/service/vertex_array_manager.cc', |
127 'command_buffer/service/vertex_attrib_manager.h', | 129 'command_buffer/service/vertex_attrib_manager.h', |
128 'command_buffer/service/vertex_attrib_manager.cc', | 130 'command_buffer/service/vertex_attrib_manager.cc', |
129 ], | 131 ], |
130 'conditions': [ | 132 'conditions': [ |
131 ['ui_compositor_image_transport==1', { | 133 ['ui_compositor_image_transport==1', { |
132 'include_dirs': [ | 134 'include_dirs': [ |
133 '../third_party/khronos', | 135 '../third_party/khronos', |
134 ], | 136 ], |
135 }], | 137 }], |
136 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { | 138 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { |
137 'sources': [ | 139 'sources': [ |
138 'command_buffer/service/async_pixel_transfer_manager_egl.cc', | 140 'command_buffer/service/async_pixel_transfer_manager_egl.cc', |
139 'command_buffer/service/async_pixel_transfer_manager_egl.h', | 141 'command_buffer/service/async_pixel_transfer_manager_egl.h', |
140 ], | 142 ], |
141 }], | 143 }], |
142 ], | 144 ], |
143 } | 145 } |
OLD | NEW |