| 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| 11 'conditions': [ | 11 'conditions': [ |
| 12 ['OS=="win"', { | 12 ['OS=="win"', { |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 'third_party/wtl/include', | 14 '<(DEPTH)/third_party/wtl/include', |
| 15 ], | 15 ], |
| 16 'defines': [ | 16 'defines': [ |
| 17 'CHROME_DLL', | 17 'CHROME_DLL', |
| 18 'BROWSER_DLL', | 18 'BROWSER_DLL', |
| 19 'RENDERER_DLL', | 19 'RENDERER_DLL', |
| 20 'PLUGIN_DLL', | 20 'PLUGIN_DLL', |
| 21 ], | 21 ], |
| 22 'msvs_settings': { | 22 'msvs_settings': { |
| 23 'VCLinkerTool': { | 23 'VCLinkerTool': { |
| 24 'BaseAddress': '0x01c30000', | 24 'BaseAddress': '0x01c30000', |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 'configurations': { | 524 'configurations': { |
| 525 'Common_Base': { | 525 'Common_Base': { |
| 526 'msvs_target_platform': 'x64', | 526 'msvs_target_platform': 'x64', |
| 527 }, | 527 }, |
| 528 }, | 528 }, |
| 529 }, # target chrome_dll | 529 }, # target chrome_dll |
| 530 ], | 530 ], |
| 531 }], | 531 }], |
| 532 ], | 532 ], |
| 533 } | 533 } |
| OLD | NEW |