| 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', |
| 11 'variables': { | 11 'variables': { |
| 12 'enable_wexit_time_destructors': 1, | 12 'enable_wexit_time_destructors': 1, |
| 13 }, | 13 }, |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '<@(chromium_dependencies)', | 15 '<@(chromium_dependencies)', |
| 16 'app/policy/cloud_policy_codegen.gyp:policy', | 16 'app/policy/cloud_policy_codegen.gyp:policy', |
| 17 ], | 17 ], |
| 18 'conditions': [ | 18 'conditions': [ |
| 19 ['use_webkit_compositor==1', { |
| 20 'dependencies': [ |
| 21 '../ui/gfx/compositor/compositor.gyp:compositor', |
| 22 ], |
| 23 }, { # use_webkit_compositor!=1 |
| 24 'dependencies': [ |
| 25 '../ui/gfx/compositor/compositor.gyp:test_compositor', |
| 26 ], |
| 27 }], |
| 19 ['OS=="win"', { | 28 ['OS=="win"', { |
| 20 'product_name': 'chrome', | 29 'product_name': 'chrome', |
| 21 'dependencies': [ | 30 'dependencies': [ |
| 22 # On Windows, link the dependencies (libraries) that make | 31 # On Windows, link the dependencies (libraries) that make |
| 23 # up actual Chromium functionality into this .dll. | 32 # up actual Chromium functionality into this .dll. |
| 24 'chrome_resources.gyp:chrome_resources', | 33 'chrome_resources.gyp:chrome_resources', |
| 25 'chrome_version_resources', | 34 'chrome_version_resources', |
| 26 'installer_util_strings', | 35 'installer_util_strings', |
| 27 '../content/content.gyp:content_worker', | 36 '../content/content.gyp:content_worker', |
| 28 '../crypto/crypto.gyp:crypto', | 37 '../crypto/crypto.gyp:crypto', |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 ], | 506 ], |
| 498 }], | 507 }], |
| 499 ], # conditions | 508 ], # conditions |
| 500 }], # OS=="mac" | 509 }], # OS=="mac" |
| 501 ], # conditions | 510 ], # conditions |
| 502 }, # target chrome_dll | 511 }, # target chrome_dll |
| 503 ], # targets | 512 ], # targets |
| 504 }], # OS=="mac" or OS=="win" | 513 }], # OS=="mac" or OS=="win" |
| 505 ], | 514 ], |
| 506 } | 515 } |
| OLD | NEW |