| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'win/update_lock.cc', | 207 'win/update_lock.cc', |
| 208 'win/update_lock.h', | 208 'win/update_lock.h', |
| 209 ], | 209 ], |
| 210 'link_settings': { | 210 'link_settings': { |
| 211 'libraries': [ | 211 'libraries': [ |
| 212 '-lrpcrt4.lib', | 212 '-lrpcrt4.lib', |
| 213 ], | 213 ], |
| 214 }, | 214 }, |
| 215 }, | 215 }, |
| 216 ], | 216 ], |
| 217 ['OS == "win" and renderer == "d3d9"', | 217 ['OS == "win" and (renderer == "d3d9" or renderer == "cb")', |
| 218 { | 218 { |
| 219 'link_settings': { | 219 'link_settings': { |
| 220 'libraries': [ | 220 'libraries': [ |
| 221 '"$(DXSDK_DIR)/Lib/x86/DxErr9.lib"', | 221 '"$(DXSDK_DIR)/Lib/x86/DxErr.lib"', |
| 222 '"$(DXSDK_DIR)/Lib/x86/d3dx9.lib"', | 222 '"$(DXSDK_DIR)/Lib/x86/d3dx9.lib"', |
| 223 '-ld3d9.lib', | 223 '-ld3d9.lib', |
| 224 ], | 224 ], |
| 225 }, | 225 }, |
| 226 }, | 226 }, |
| 227 ], | 227 ], |
| 228 ], | 228 ], |
| 229 }, | 229 }, |
| 230 ], | 230 ], |
| 231 'conditions': [ | 231 'conditions': [ |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 '<(_inputs)', | 395 '<(_inputs)', |
| 396 ], | 396 ], |
| 397 }, | 397 }, |
| 398 ], | 398 ], |
| 399 }, | 399 }, |
| 400 ], | 400 ], |
| 401 }, | 401 }, |
| 402 ], | 402 ], |
| 403 ], | 403 ], |
| 404 } | 404 } |
| OLD | NEW |