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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ['use_aura==1', { | 51 ['use_aura==1', { |
52 'dependencies': [ | 52 'dependencies': [ |
53 '../ui/gfx/compositor/compositor.gyp:compositor', | 53 '../ui/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', |
62 'chrome_version_resources', | 62 'chrome_version_resources', |
63 'installer_util_strings', | 63 'installer_util_strings', |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 ], | 540 ], |
541 }], | 541 }], |
542 ], # conditions | 542 ], # conditions |
543 }], # OS=="mac" | 543 }], # OS=="mac" |
544 ], # conditions | 544 ], # conditions |
545 }, # target chrome_dll | 545 }, # target chrome_dll |
546 ], # targets | 546 ], # targets |
547 }], # OS=="mac" or OS=="win" | 547 }], # OS=="mac" or OS=="win" |
548 ], | 548 ], |
549 } | 549 } |
OLD | NEW |