| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 # On Windows, link the dependencies (libraries) that make | 79 # On Windows, link the dependencies (libraries) that make |
| 80 # up actual Chromium functionality into this .dll. | 80 # up actual Chromium functionality into this .dll. |
| 81 'chrome_dll_version', | 81 'chrome_dll_version', |
| 82 'chrome_resources', | 82 'chrome_resources', |
| 83 'installer_util_strings', | 83 'installer_util_strings', |
| 84 '../content/content.gyp:content_worker', | 84 '../content/content.gyp:content_worker', |
| 85 '../crypto/crypto.gyp:crypto', | 85 '../crypto/crypto.gyp:crypto', |
| 86 '../printing/printing.gyp:printing', | 86 '../printing/printing.gyp:printing', |
| 87 '../net/net.gyp:net_resources', | 87 '../net/net.gyp:net_resources', |
| 88 '../third_party/cld/cld.gyp:cld', | 88 '../third_party/cld/cld.gyp:cld', |
| 89 '../ui/ui.gyp:ui_base', |
| 89 '../views/views.gyp:views', | 90 '../views/views.gyp:views', |
| 90 '../webkit/support/webkit_support.gyp:webkit_resources', | 91 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 91 ], | 92 ], |
| 92 'sources': [ | 93 'sources': [ |
| 93 'app/chrome_command_ids.h', | 94 'app/chrome_command_ids.h', |
| 94 'app/chrome_dll.rc', | 95 'app/chrome_dll.rc', |
| 95 'app/chrome_dll_resource.h', | 96 'app/chrome_dll_resource.h', |
| 96 'app/chrome_main.cc', | 97 'app/chrome_main.cc', |
| 97 'app/chrome_main_win.cc', | 98 'app/chrome_main_win.cc', |
| 98 '<(SHARED_INTERMEDIATE_DIR)/chrome_dll_version/chrome_dll_versio
n.rc', | 99 '<(SHARED_INTERMEDIATE_DIR)/chrome_dll_version/chrome_dll_versio
n.rc', |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 661 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 661 }, | 662 }, |
| 662 }, | 663 }, |
| 663 }, | 664 }, |
| 664 }, | 665 }, |
| 665 }, # target chrome_dll | 666 }, # target chrome_dll |
| 666 ], | 667 ], |
| 667 }], | 668 }], |
| 668 ], | 669 ], |
| 669 } | 670 } |
| OLD | NEW |