| 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 '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': 'shared_library', | 10 'type': 'shared_library', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 # On Windows, link the dependencies (libraries) that make | 22 # On Windows, link the dependencies (libraries) that make |
| 23 # up actual Chromium functionality into this .dll. | 23 # up actual Chromium functionality into this .dll. |
| 24 'chrome_resources.gyp:chrome_resources', | 24 'chrome_resources.gyp:chrome_resources', |
| 25 'chrome_version_resources', | 25 'chrome_version_resources', |
| 26 'installer_util_strings', | 26 'installer_util_strings', |
| 27 '../content/content.gyp:content_worker', | 27 '../content/content.gyp:content_worker', |
| 28 '../crypto/crypto.gyp:crypto', | 28 '../crypto/crypto.gyp:crypto', |
| 29 '../printing/printing.gyp:printing', | 29 '../printing/printing.gyp:printing', |
| 30 '../net/net.gyp:net_resources', | 30 '../net/net.gyp:net_resources', |
| 31 '../third_party/cld/cld.gyp:cld', | 31 '../third_party/cld/cld.gyp:cld', |
| 32 '../views/views.gyp:views', | 32 '../ui/views/views.gyp:views', |
| 33 '../webkit/support/webkit_support.gyp:webkit_resources', | 33 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 'app/chrome_command_ids.h', | 36 'app/chrome_command_ids.h', |
| 37 'app/chrome_dll.rc', | 37 'app/chrome_dll.rc', |
| 38 'app/chrome_dll_resource.h', | 38 'app/chrome_dll_resource.h', |
| 39 'app/chrome_main.cc', | 39 'app/chrome_main.cc', |
| 40 'app/chrome_main_delegate.cc', | 40 'app/chrome_main_delegate.cc', |
| 41 'app/chrome_main_delegate.h', | 41 'app/chrome_main_delegate.h', |
| 42 | 42 |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 ], | 497 ], |
| 498 }], | 498 }], |
| 499 ], # conditions | 499 ], # conditions |
| 500 }], # OS=="mac" | 500 }], # OS=="mac" |
| 501 ], # conditions | 501 ], # conditions |
| 502 }, # target chrome_dll | 502 }, # target chrome_dll |
| 503 ], # targets | 503 ], # targets |
| 504 }], # OS=="mac" or OS=="win" | 504 }], # OS=="mac" or OS=="win" |
| 505 ], | 505 ], |
| 506 } | 506 } |
| OLD | NEW |