| 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 { | |
| 185 'target_name': 'glue', | 156 'target_name': 'glue', |
| 186 'type': '<(library)', | 157 'type': '<(library)', |
| 187 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 158 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
| 188 'dependencies': [ | 159 'dependencies': [ |
| 189 '<(DEPTH)/app/app.gyp:app_base', | 160 '<(DEPTH)/app/app.gyp:app_base', |
| 190 '<(DEPTH)/base/base.gyp:base_i18n', | 161 '<(DEPTH)/base/base.gyp:base_i18n', |
| 191 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation_client_side_arrays', | 162 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation_client_side_arrays', |
| 192 '<(DEPTH)/net/net.gyp:net', | 163 '<(DEPTH)/net/net.gyp:net', |
| 193 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_shared_impl', | 164 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_shared_impl', |
| 194 '<(DEPTH)/printing/printing.gyp:printing', | 165 '<(DEPTH)/printing/printing.gyp:printing', |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 'conditions': [ | 572 'conditions': [ |
| 602 ['OS=="win"', { | 573 ['OS=="win"', { |
| 603 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], | 574 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], |
| 604 }], | 575 }], |
| 605 ], | 576 ], |
| 606 }, | 577 }, |
| 607 ], | 578 ], |
| 608 }], | 579 }], |
| 609 ], | 580 ], |
| 610 } | 581 } |
| OLD | NEW |