| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'chrome_version_resources', | 62 'chrome_version_resources', |
| 63 '../content/content.gyp:content_worker', | 63 '../content/content.gyp:content_worker', |
| 64 '../crypto/crypto.gyp:crypto', | 64 '../crypto/crypto.gyp:crypto', |
| 65 '../printing/printing.gyp:printing', | 65 '../printing/printing.gyp:printing', |
| 66 '../net/net.gyp:net_resources', | 66 '../net/net.gyp:net_resources', |
| 67 '../third_party/cld/cld.gyp:cld', | 67 '../third_party/cld/cld.gyp:cld', |
| 68 '../ui/views/views.gyp:views', | 68 '../ui/views/views.gyp:views', |
| 69 '../webkit/support/webkit_support.gyp:webkit_resources', | 69 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 70 ], | 70 ], |
| 71 'sources': [ | 71 'sources': [ |
| 72 'app/chrome.manifest', | |
| 73 'app/chrome_command_ids.h', | 72 'app/chrome_command_ids.h', |
| 74 'app/chrome_dll.rc', | 73 'app/chrome_dll.rc', |
| 75 'app/chrome_dll_resource.h', | 74 'app/chrome_dll_resource.h', |
| 76 'app/chrome_main.cc', | 75 'app/chrome_main.cc', |
| 77 'app/chrome_main_delegate.cc', | 76 'app/chrome_main_delegate.cc', |
| 78 'app/chrome_main_delegate.h', | 77 'app/chrome_main_delegate.h', |
| 79 | 78 |
| 80 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', | 79 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', |
| 81 '../base/win/dllmain.cc', | 80 '../base/win/dllmain.cc', |
| 82 | 81 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'setupapi.dll', | 151 'setupapi.dll', |
| 153 'urlmon.dll', | 152 'urlmon.dll', |
| 154 'winhttp.dll', | 153 'winhttp.dll', |
| 155 'wininet.dll', | 154 'wininet.dll', |
| 156 'winspool.drv', | 155 'winspool.drv', |
| 157 'ws2_32.dll', | 156 'ws2_32.dll', |
| 158 'wsock32.dll', | 157 'wsock32.dll', |
| 159 ], | 158 ], |
| 160 }, | 159 }, |
| 161 'VCManifestTool': { | 160 'VCManifestTool': { |
| 162 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.manifes
t', | 161 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.man
ifest', |
| 163 }, | 162 }, |
| 164 }, | 163 }, |
| 165 }], # OS=="win" | 164 }], # OS=="win" |
| 166 ['OS=="mac"', { | 165 ['OS=="mac"', { |
| 167 # The main browser executable's name is <(mac_product_name). | 166 # The main browser executable's name is <(mac_product_name). |
| 168 # Certain things will get confused if two modules in the | 167 # Certain things will get confused if two modules in the |
| 169 # executable share the same name, so append " Framework" to the | 168 # executable share the same name, so append " Framework" to the |
| 170 # product_name used for the framework. This will result in | 169 # product_name used for the framework. This will result in |
| 171 # a name like "Chromium Framework.framework". | 170 # a name like "Chromium Framework.framework". |
| 172 'product_name': '<(mac_product_name) Framework', | 171 'product_name': '<(mac_product_name) Framework', |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 ], | 535 ], |
| 537 }], | 536 }], |
| 538 ], # conditions | 537 ], # conditions |
| 539 }], # OS=="mac" | 538 }], # OS=="mac" |
| 540 ], # conditions | 539 ], # conditions |
| 541 }, # target chrome_dll | 540 }, # target chrome_dll |
| 542 ], # targets | 541 ], # targets |
| 543 }], # OS=="mac" or OS=="win" | 542 }], # OS=="mac" or OS=="win" |
| 544 ], | 543 ], |
| 545 } | 544 } |
| OLD | NEW |