| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', | 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', |
| 9 | 9 |
| 10 'variables': { | 10 'variables': { |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 'dependencies': [ | 352 'dependencies': [ |
| 353 '../chrome/chrome.gyp:crash_service', | 353 '../chrome/chrome.gyp:crash_service', |
| 354 '../chrome/chrome.gyp:automation', | 354 '../chrome/chrome.gyp:automation', |
| 355 '../chrome/chrome.gyp:installer_util', | 355 '../chrome/chrome.gyp:installer_util', |
| 356 '../google_update/google_update.gyp:google_update', | 356 '../google_update/google_update.gyp:google_update', |
| 357 ], | 357 ], |
| 358 'configurations': { | 358 'configurations': { |
| 359 'Debug_Base': { | 359 'Debug_Base': { |
| 360 'msvs_settings': { | 360 'msvs_settings': { |
| 361 'VCLinkerTool': { | 361 'VCLinkerTool': { |
| 362 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 362 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 363 }, | 363 }, |
| 364 }, | 364 }, |
| 365 }, | 365 }, |
| 366 }, | 366 }, |
| 367 'conditions': [ | 367 'conditions': [ |
| 368 ['win_use_allocator_shim==1', { | 368 ['win_use_allocator_shim==1', { |
| 369 'dependencies': [ | 369 'dependencies': [ |
| 370 '../base/allocator/allocator.gyp:allocator', | 370 '../base/allocator/allocator.gyp:allocator', |
| 371 ], | 371 ], |
| 372 }], | 372 }], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 'include_dirs': [ | 423 'include_dirs': [ |
| 424 '<@(xul_include_directories)', | 424 '<@(xul_include_directories)', |
| 425 '<(DEPTH)/third_party/wtl/include', | 425 '<(DEPTH)/third_party/wtl/include', |
| 426 ], | 426 ], |
| 427 'conditions': [ | 427 'conditions': [ |
| 428 ['OS=="win"', { | 428 ['OS=="win"', { |
| 429 'configurations': { | 429 'configurations': { |
| 430 'Debug_Base': { | 430 'Debug_Base': { |
| 431 'msvs_settings': { | 431 'msvs_settings': { |
| 432 'VCLinkerTool': { | 432 'VCLinkerTool': { |
| 433 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 433 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 434 }, | 434 }, |
| 435 }, | 435 }, |
| 436 }, | 436 }, |
| 437 }, | 437 }, |
| 438 'link_settings': { | 438 'link_settings': { |
| 439 'libraries': [ | 439 'libraries': [ |
| 440 '-loleacc.lib', | 440 '-loleacc.lib', |
| 441 ], | 441 ], |
| 442 }, | 442 }, |
| 443 'msvs_settings': { | 443 'msvs_settings': { |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 ], # 'conditions' | 1192 ], # 'conditions' |
| 1193 } | 1193 } |
| 1194 | 1194 |
| 1195 # vim: shiftwidth=2:et:ai:tabstop=2 | 1195 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 1196 | 1196 |
| 1197 # Local Variables: | 1197 # Local Variables: |
| 1198 # tab-width:2 | 1198 # tab-width:2 |
| 1199 # indent-tabs-mode:nil | 1199 # indent-tabs-mode:nil |
| 1200 # End: | 1200 # End: |
| 1201 # vim: set expandtab tabstop=2 shiftwidth=2: | 1201 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |