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': '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 and views_compositor==1', { | 19 ['views_compositor==1', { |
20 'dependencies': [ | 20 'dependencies': [ |
21 '../ui/gfx/compositor/compositor.gyp:compositor', | 21 '../ui/gfx/compositor/compositor.gyp:compositor', |
22 ], | 22 ], |
23 }, { # use_webkit_compositor!=1 | |
24 'dependencies': [ | |
25 '../ui/gfx/compositor/compositor.gyp:test_compositor', | |
26 ], | |
27 }], | 23 }], |
28 ['OS=="win"', { | 24 ['OS=="win"', { |
29 'product_name': 'chrome', | 25 'product_name': 'chrome', |
30 'dependencies': [ | 26 'dependencies': [ |
31 # On Windows, link the dependencies (libraries) that make | 27 # On Windows, link the dependencies (libraries) that make |
32 # up actual Chromium functionality into this .dll. | 28 # up actual Chromium functionality into this .dll. |
33 'chrome_resources.gyp:chrome_resources', | 29 'chrome_resources.gyp:chrome_resources', |
34 'chrome_version_resources', | 30 'chrome_version_resources', |
35 'installer_util_strings', | 31 'installer_util_strings', |
36 '../content/content.gyp:content_worker', | 32 '../content/content.gyp:content_worker', |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 ], | 506 ], |
511 }], | 507 }], |
512 ], # conditions | 508 ], # conditions |
513 }], # OS=="mac" | 509 }], # OS=="mac" |
514 ], # conditions | 510 ], # conditions |
515 }, # target chrome_dll | 511 }, # target chrome_dll |
516 ], # targets | 512 ], # targets |
517 }], # OS=="mac" or OS=="win" | 513 }], # OS=="mac" or OS=="win" |
518 ], | 514 ], |
519 } | 515 } |
OLD | NEW |