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 '<(DEPTH)/third_party/khronos', | 8 '<(DEPTH)/third_party/khronos', |
9 ], | 9 ], |
10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '..', | 12 '..', |
13 '<(DEPTH)/third_party/khronos', | 13 '<(DEPTH)/third_party/khronos', |
14 ], | 14 ], |
15 }, | 15 }, |
16 'dependencies': [ | 16 'dependencies': [ |
17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
19 '../crypto/crypto.gyp:crypto', | 19 '../crypto/crypto.gyp:crypto', |
20 '../ui/gl/gl.gyp:gl', | 20 '../ui/gl/gl.gyp:gl', |
21 '../ui/surface/surface.gyp:surface', | 21 '../ui/surface/surface.gyp:surface', |
22 '../ui/ui.gyp:ui', | 22 '../ui/ui.gyp:ui', |
23 '../third_party/angle/src/build_angle.gyp:translator_glsl', | 23 '../third_party/angle/src/build_angle.gyp:translator_glsl', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 'command_buffer/service/buffer_manager.h', | 26 'command_buffer/service/buffer_manager.h', |
27 'command_buffer/service/buffer_manager.cc', | 27 'command_buffer/service/buffer_manager.cc', |
28 'command_buffer/service/framebuffer_manager.h', | |
29 'command_buffer/service/framebuffer_manager.cc', | |
30 'command_buffer/service/cmd_buffer_engine.h', | 28 'command_buffer/service/cmd_buffer_engine.h', |
31 'command_buffer/service/cmd_parser.cc', | 29 'command_buffer/service/cmd_parser.cc', |
32 'command_buffer/service/cmd_parser.h', | 30 'command_buffer/service/cmd_parser.h', |
33 'command_buffer/service/command_buffer_service.cc', | 31 'command_buffer/service/command_buffer_service.cc', |
34 'command_buffer/service/command_buffer_service.h', | 32 'command_buffer/service/command_buffer_service.h', |
35 'command_buffer/service/common_decoder.cc', | 33 'command_buffer/service/common_decoder.cc', |
36 'command_buffer/service/common_decoder.h', | 34 'command_buffer/service/common_decoder.h', |
37 'command_buffer/service/context_group.h', | 35 'command_buffer/service/context_group.h', |
38 'command_buffer/service/context_group.cc', | 36 'command_buffer/service/context_group.cc', |
39 'command_buffer/service/feature_info.h', | 37 'command_buffer/service/feature_info.h', |
40 'command_buffer/service/feature_info.cc', | 38 'command_buffer/service/feature_info.cc', |
| 39 'command_buffer/service/framebuffer_manager.h', |
| 40 'command_buffer/service/framebuffer_manager.cc', |
41 'command_buffer/service/gles2_cmd_copy_texture_chromium.cc', | 41 'command_buffer/service/gles2_cmd_copy_texture_chromium.cc', |
42 'command_buffer/service/gles2_cmd_copy_texture_chromium.h', | 42 'command_buffer/service/gles2_cmd_copy_texture_chromium.h', |
43 'command_buffer/service/gles2_cmd_decoder.h', | 43 'command_buffer/service/gles2_cmd_decoder.h', |
44 'command_buffer/service/gles2_cmd_decoder_autogen.h', | 44 'command_buffer/service/gles2_cmd_decoder_autogen.h', |
45 'command_buffer/service/gles2_cmd_decoder.cc', | 45 'command_buffer/service/gles2_cmd_decoder.cc', |
46 'command_buffer/service/gles2_cmd_validation.h', | 46 'command_buffer/service/gles2_cmd_validation.h', |
47 'command_buffer/service/gles2_cmd_validation.cc', | 47 'command_buffer/service/gles2_cmd_validation.cc', |
48 'command_buffer/service/gles2_cmd_validation_autogen.h', | 48 'command_buffer/service/gles2_cmd_validation_autogen.h', |
49 'command_buffer/service/gles2_cmd_validation_implementation_autogen.h', | 49 'command_buffer/service/gles2_cmd_validation_implementation_autogen.h', |
50 'command_buffer/service/gl_utils.h', | 50 'command_buffer/service/gl_utils.h', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 '../build/linux/system.gyp:gtk', | 93 '../build/linux/system.gyp:gtk', |
94 ], | 94 ], |
95 }], | 95 }], |
96 ['ui_compositor_image_transport==1', { | 96 ['ui_compositor_image_transport==1', { |
97 'include_dirs': [ | 97 'include_dirs': [ |
98 '<(DEPTH)/third_party/angle/include', | 98 '<(DEPTH)/third_party/angle/include', |
99 ], | 99 ], |
100 }], | 100 }], |
101 ], | 101 ], |
102 } | 102 } |
OLD | NEW |