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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'renderer', | 8 'target_name': 'renderer', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 'renderer/webworker_base.h', | 141 'renderer/webworker_base.h', |
142 'renderer/webworker_proxy.cc', | 142 'renderer/webworker_proxy.cc', |
143 'renderer/webworker_proxy.h', | 143 'renderer/webworker_proxy.h', |
144 ], | 144 ], |
145 'link_settings': { | 145 'link_settings': { |
146 'mac_bundle_resources': [ | 146 'mac_bundle_resources': [ |
147 'renderer/renderer.sb', | 147 'renderer/renderer.sb', |
148 ], | 148 ], |
149 }, | 149 }, |
150 'conditions': [ | 150 'conditions': [ |
151 ['enable_gpu==1', { | 151 ['enable_pepper==1', { |
152 'dependencies': [ | 152 'dependencies': [ |
153 '../gpu/gpu.gyp:gpu_plugin', | 153 '../gpu/gpu.gyp:gpu_plugin', |
154 ], | 154 ], |
155 }], | 155 }], |
156 ['disable_nacl!=1', { | 156 ['disable_nacl!=1', { |
157 'dependencies': [ | 157 'dependencies': [ |
158 'nacl', | 158 'nacl', |
159 ], | 159 ], |
160 }], | 160 }], |
161 # Linux-specific rules. | 161 # Linux-specific rules. |
(...skipping 22 matching lines...) Expand all Loading... |
184 ], | 184 ], |
185 }, | 185 }, |
186 ], | 186 ], |
187 } | 187 } |
188 | 188 |
189 # Local Variables: | 189 # Local Variables: |
190 # tab-width:2 | 190 # tab-width:2 |
191 # indent-tabs-mode:nil | 191 # indent-tabs-mode:nil |
192 # End: | 192 # End: |
193 # vim: set expandtab tabstop=2 shiftwidth=2: | 193 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |