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 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'user_agent.cc', | 146 'user_agent.cc', |
147 'user_agent.h', | 147 'user_agent.h', |
148 ], | 148 ], |
149 # Dependents may rely on files generated by this target or one of its | 149 # Dependents may rely on files generated by this target or one of its |
150 # own hard dependencies. | 150 # own hard dependencies. |
151 'hard_dependency': 1, | 151 'hard_dependency': 1, |
152 'conditions': [ | 152 'conditions': [ |
153 ], | 153 ], |
154 }, | 154 }, |
155 { | 155 { |
| 156 'target_name': 'ppapi_gles_implementation', |
| 157 'type': 'none', |
| 158 'suppress_wildcard': 1, |
| 159 'conditions': [ |
| 160 ['enable_gpu==1', { |
| 161 'actions': [ |
| 162 { |
| 163 'action_name': 'generate_ppapi_gles_implementation', |
| 164 'variables': { |
| 165 'gles_script': '<(DEPTH)/gpu/command_buffer/build_gles2_cmd_buff
er.py', |
| 166 }, |
| 167 'inputs': [ |
| 168 '<(gles_script)', |
| 169 ], |
| 170 'outputs': [ |
| 171 '<(DEPTH)/webkit/plugins/ppapi/ppb_opengles_impl.cc', |
| 172 ], |
| 173 'action': [ |
| 174 'python', |
| 175 '<(gles_script)', |
| 176 '--alternate-mode=chrome_ppapi' |
| 177 ], |
| 178 'message': 'Generating Pepper OpenGL ES implementation', |
| 179 } |
| 180 ], |
| 181 }], |
| 182 ], |
| 183 }, |
| 184 { |
156 'target_name': 'glue', | 185 'target_name': 'glue', |
157 'type': '<(library)', | 186 'type': '<(library)', |
158 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 187 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
159 'dependencies': [ | 188 'dependencies': [ |
160 '<(DEPTH)/app/app.gyp:app_base', | 189 '<(DEPTH)/app/app.gyp:app_base', |
161 '<(DEPTH)/base/base.gyp:base_i18n', | 190 '<(DEPTH)/base/base.gyp:base_i18n', |
162 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', | 191 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', |
163 '<(DEPTH)/net/net.gyp:net', | 192 '<(DEPTH)/net/net.gyp:net', |
164 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_shared_impl', | 193 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_shared_impl', |
165 '<(DEPTH)/printing/printing.gyp:printing', | 194 '<(DEPTH)/printing/printing.gyp:printing', |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 }], | 563 }], |
535 ['inside_chromium_build==0', { | 564 ['inside_chromium_build==0', { |
536 'dependencies': [ | 565 'dependencies': [ |
537 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 566 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
538 ], | 567 ], |
539 }], | 568 }], |
540 ], | 569 ], |
541 }, | 570 }, |
542 ], | 571 ], |
543 } | 572 } |
OLD | NEW |