| 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', |
| 72 'app/chrome_command_ids.h', | 73 'app/chrome_command_ids.h', |
| 73 'app/chrome_dll.rc', | 74 'app/chrome_dll.rc', |
| 74 'app/chrome_dll_resource.h', | 75 'app/chrome_dll_resource.h', |
| 75 'app/chrome_main.cc', | 76 'app/chrome_main.cc', |
| 76 'app/chrome_main_delegate.cc', | 77 'app/chrome_main_delegate.cc', |
| 77 'app/chrome_main_delegate.h', | 78 'app/chrome_main_delegate.h', |
| 78 | 79 |
| 79 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', | 80 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', |
| 80 '../base/win/dllmain.cc', | 81 '../base/win/dllmain.cc', |
| 81 | 82 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 'setupapi.dll', | 152 'setupapi.dll', |
| 152 'urlmon.dll', | 153 'urlmon.dll', |
| 153 'winhttp.dll', | 154 'winhttp.dll', |
| 154 'wininet.dll', | 155 'wininet.dll', |
| 155 'winspool.drv', | 156 'winspool.drv', |
| 156 'ws2_32.dll', | 157 'ws2_32.dll', |
| 157 'wsock32.dll', | 158 'wsock32.dll', |
| 158 ], | 159 ], |
| 159 }, | 160 }, |
| 160 'VCManifestTool': { | 161 'VCManifestTool': { |
| 161 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.man
ifest', | 162 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.manifes
t', |
| 162 }, | 163 }, |
| 163 }, | 164 }, |
| 164 }], # OS=="win" | 165 }], # OS=="win" |
| 165 ['OS=="mac"', { | 166 ['OS=="mac"', { |
| 166 # The main browser executable's name is <(mac_product_name). | 167 # The main browser executable's name is <(mac_product_name). |
| 167 # Certain things will get confused if two modules in the | 168 # Certain things will get confused if two modules in the |
| 168 # executable share the same name, so append " Framework" to the | 169 # executable share the same name, so append " Framework" to the |
| 169 # product_name used for the framework. This will result in | 170 # product_name used for the framework. This will result in |
| 170 # a name like "Chromium Framework.framework". | 171 # a name like "Chromium Framework.framework". |
| 171 'product_name': '<(mac_product_name) Framework', | 172 'product_name': '<(mac_product_name) Framework', |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 ], | 536 ], |
| 536 }], | 537 }], |
| 537 ], # conditions | 538 ], # conditions |
| 538 }], # OS=="mac" | 539 }], # OS=="mac" |
| 539 ], # conditions | 540 ], # conditions |
| 540 }, # target chrome_dll | 541 }, # target chrome_dll |
| 541 ], # targets | 542 ], # targets |
| 542 }], # OS=="mac" or OS=="win" | 543 }], # OS=="mac" or OS=="win" |
| 543 ], | 544 ], |
| 544 } | 545 } |
| OLD | NEW |