| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 }], | 191 }], |
| 192 # BSD-specific rules. | 192 # BSD-specific rules. |
| 193 ['OS=="openbsd" or OS=="freebsd"', { | 193 ['OS=="openbsd" or OS=="freebsd"', { |
| 194 'dependencies': [ | 194 'dependencies': [ |
| 195 '../build/linux/system.gyp:gtk', | 195 '../build/linux/system.gyp:gtk', |
| 196 ], | 196 ], |
| 197 }], | 197 }], |
| 198 # Windows-specific rules. | 198 # Windows-specific rules. |
| 199 ['OS=="win"', { | 199 ['OS=="win"', { |
| 200 'include_dirs': [ | 200 'include_dirs': [ |
| 201 'third_party/wtl/include', | 201 '<(DEPTH)/third_party/wtl/include', |
| 202 ], | 202 ], |
| 203 'conditions': [ | 203 'conditions': [ |
| 204 ['win_use_allocator_shim==1', { | 204 ['win_use_allocator_shim==1', { |
| 205 'dependencies': [ | 205 'dependencies': [ |
| 206 '<(allocator_target)', | 206 '<(allocator_target)', |
| 207 ], | 207 ], |
| 208 'export_dependent_settings': [ | 208 'export_dependent_settings': [ |
| 209 '<(allocator_target)', | 209 '<(allocator_target)', |
| 210 ], | 210 ], |
| 211 }], | 211 }], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 223 ], | 223 ], |
| 224 }, | 224 }, |
| 225 ], | 225 ], |
| 226 } | 226 } |
| 227 | 227 |
| 228 # Local Variables: | 228 # Local Variables: |
| 229 # tab-width:2 | 229 # tab-width:2 |
| 230 # indent-tabs-mode:nil | 230 # indent-tabs-mode:nil |
| 231 # End: | 231 # End: |
| 232 # vim: set expandtab tabstop=2 shiftwidth=2: | 232 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |