| 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 30 matching lines...) Expand all Loading... |
| 41 'target_name': 'chrome_main_dll', | 41 'target_name': 'chrome_main_dll', |
| 42 'type': 'shared_library', | 42 'type': 'shared_library', |
| 43 'variables': { | 43 'variables': { |
| 44 'enable_wexit_time_destructors': 1, | 44 'enable_wexit_time_destructors': 1, |
| 45 }, | 45 }, |
| 46 'dependencies': [ | 46 'dependencies': [ |
| 47 '<@(chromium_dependencies)', | 47 '<@(chromium_dependencies)', |
| 48 'app/policy/cloud_policy_codegen.gyp:policy', | 48 'app/policy/cloud_policy_codegen.gyp:policy', |
| 49 ], | 49 ], |
| 50 'conditions': [ | 50 'conditions': [ |
| 51 ['views_compositor==1', { | 51 ['use_aura==1', { |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 '../ui/gfx/compositor/compositor.gyp:compositor', | 53 '../ui/gfx/compositor/compositor.gyp:compositor', |
| 54 ], | 54 ], |
| 55 }], | 55 }], |
| 56 ['OS=="win"', { | 56 ['OS=="win"', { |
| 57 'product_name': 'chrome', | 57 'product_name': 'chrome', |
| 58 'dependencies': [ | 58 'dependencies': [ |
| 59 # On Windows, link the dependencies (libraries) that make | 59 # On Windows, link the dependencies (libraries) that make |
| 60 # up actual Chromium functionality into this .dll. | 60 # up actual Chromium functionality into this .dll. |
| 61 'chrome_resources.gyp:chrome_resources', | 61 'chrome_resources.gyp:chrome_resources', |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 ], | 526 ], |
| 527 }], | 527 }], |
| 528 ], # conditions | 528 ], # conditions |
| 529 }], # OS=="mac" | 529 }], # OS=="mac" |
| 530 ], # conditions | 530 ], # conditions |
| 531 }, # target chrome_dll | 531 }, # target chrome_dll |
| 532 ], # targets | 532 ], # targets |
| 533 }], # OS=="mac" or OS=="win" | 533 }], # OS=="mac" or OS=="win" |
| 534 ], | 534 ], |
| 535 } | 535 } |
| OLD | NEW |