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