OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 22 matching lines...) Expand all Loading... |
33 'target_name': 'command_buffer_common', | 33 'target_name': 'command_buffer_common', |
34 'type': 'static_library', | 34 'type': 'static_library', |
35 'all_dependent_settings': { | 35 'all_dependent_settings': { |
36 'include_dirs': [ | 36 'include_dirs': [ |
37 '..', | 37 '..', |
38 ], | 38 ], |
39 }, # 'all_dependent_settings' | 39 }, # 'all_dependent_settings' |
40 'sources': [ | 40 'sources': [ |
41 'common/cross/bitfield_helpers.h', | 41 'common/cross/bitfield_helpers.h', |
42 'common/cross/cmd_buffer_common.h', | 42 'common/cross/cmd_buffer_common.h', |
| 43 'common/cross/cmd_buffer_common.cc', |
43 'common/cross/o3d_cmd_format.h', | 44 'common/cross/o3d_cmd_format.h', |
44 'common/cross/o3d_cmd_format.cc', | 45 'common/cross/o3d_cmd_format.cc', |
45 'common/cross/gapi_interface.h', | 46 'common/cross/gapi_interface.h', |
46 'common/cross/logging.h', | 47 'common/cross/logging.h', |
47 'common/cross/mocks.h', | 48 'common/cross/mocks.h', |
48 'common/cross/resource.cc', | 49 'common/cross/resource.cc', |
49 'common/cross/resource.h', | 50 'common/cross/resource.h', |
50 'common/cross/types.h', | 51 'common/cross/types.h', |
51 ], | 52 ], |
52 }, | 53 }, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 '../../<(cgdir)/include', | 106 '../../<(cgdir)/include', |
106 ], | 107 ], |
107 }, | 108 }, |
108 ], | 109 ], |
109 ], | 110 ], |
110 }, # 'all_dependent_settings' | 111 }, # 'all_dependent_settings' |
111 'dependencies': [ | 112 'dependencies': [ |
112 'command_buffer_common', | 113 'command_buffer_common', |
113 ], | 114 ], |
114 'sources': [ | 115 'sources': [ |
| 116 'service/cross/common_decoder.cc', |
| 117 'service/cross/common_decoder.h', |
115 'service/cross/cmd_buffer_engine.h', | 118 'service/cross/cmd_buffer_engine.h', |
116 'service/cross/cmd_parser.cc', | 119 'service/cross/cmd_parser.cc', |
117 'service/cross/cmd_parser.h', | 120 'service/cross/cmd_parser.h', |
118 'service/cross/effect_utils.cc', | 121 'service/cross/effect_utils.cc', |
119 'service/cross/effect_utils.h', | 122 'service/cross/effect_utils.h', |
120 'service/cross/gapi_decoder.cc', | 123 'service/cross/gapi_decoder.cc', |
121 'service/cross/gapi_decoder.h', | 124 'service/cross/gapi_decoder.h', |
122 'service/cross/mocks.h', | 125 'service/cross/mocks.h', |
123 'service/cross/precompile.cc', | 126 'service/cross/precompile.cc', |
124 'service/cross/precompile.h', | 127 'service/cross/precompile.h', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 }, | 229 }, |
227 }, | 230 }, |
228 ], # 'targets' | 231 ], # 'targets' |
229 } | 232 } |
230 | 233 |
231 # Local Variables: | 234 # Local Variables: |
232 # tab-width:2 | 235 # tab-width:2 |
233 # indent-tabs-mode:nil | 236 # indent-tabs-mode:nil |
234 # End: | 237 # End: |
235 # vim: set expandtab tabstop=2 shiftwidth=2: | 238 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |