Chromium Code Reviews| 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 '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', { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 127 | 127 |
| 128 # TODO(sgk): left-over from pre-gyp build, figure out | 128 # TODO(sgk): left-over from pre-gyp build, figure out |
| 129 # if we still need them and/or how to update to gyp. | 129 # if we still need them and/or how to update to gyp. |
| 130 #'app/check_dependents.bat', | 130 #'app/check_dependents.bat', |
| 131 #'app/chrome.dll.deps', | 131 #'app/chrome.dll.deps', |
| 132 ], | 132 ], |
| 133 'msvs_settings': { | 133 'msvs_settings': { |
| 134 'VCLinkerTool': { | 134 'VCLinkerTool': { |
| 135 'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib', | 135 'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib', |
| 136 'ProgramDatabaseFile': '$(OutDir)\\chrome_dll.pdb', | 136 'ProgramDatabaseFile': '$(OutDir)\\chrome_dll.pdb', |
| 137 # This corresponse to the /PROFILE flag which ensures | |
|
Sigurður Ásgeirsson
2011/07/27 11:21:56
corresponse -> corresponds?
| |
| 138 # the PDB file contains FIXUP information. | |
| 139 'Profile': 'true', | |
|
chrisha
2011/07/26 23:47:24
Wasn't this already addressed somewhere else? ie:
| |
| 137 }, | 140 }, |
| 138 }, | 141 }, |
| 139 }], # OS=="win" | 142 }], # OS=="win" |
| 140 ['OS=="mac"', { | 143 ['OS=="mac"', { |
| 141 # The main browser executable's name is <(mac_product_name). | 144 # The main browser executable's name is <(mac_product_name). |
| 142 # Certain things will get confused if two modules in the | 145 # Certain things will get confused if two modules in the |
| 143 # executable share the same name, so append " Framework" to the | 146 # executable share the same name, so append " Framework" to the |
| 144 # product_name used for the framework. This will result in | 147 # product_name used for the framework. This will result in |
| 145 # a name like "Chromium Framework.framework". | 148 # a name like "Chromium Framework.framework". |
| 146 'product_name': '<(mac_product_name) Framework', | 149 'product_name': '<(mac_product_name) Framework', |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 665 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 668 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 666 }, | 669 }, |
| 667 }, | 670 }, |
| 668 }, | 671 }, |
| 669 }, | 672 }, |
| 670 }, # target chrome_dll | 673 }, # target chrome_dll |
| 671 ], | 674 ], |
| 672 }], | 675 }], |
| 673 ], | 676 ], |
| 674 } | 677 } |
| OLD | NEW |