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', { | 19 ['use_webkit_compositor==1 and 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 | 23 }, { # use_webkit_compositor!=1 |
24 'dependencies': [ | 24 'dependencies': [ |
25 '../ui/gfx/compositor/compositor.gyp:test_compositor', | 25 '../ui/gfx/compositor/compositor.gyp:test_compositor', |
26 ], | 26 ], |
27 }], | 27 }], |
28 ['OS=="win"', { | 28 ['OS=="win"', { |
29 'product_name': 'chrome', | 29 'product_name': 'chrome', |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 ], | 509 ], |
510 }], | 510 }], |
511 ], # conditions | 511 ], # conditions |
512 }], # OS=="mac" | 512 }], # OS=="mac" |
513 ], # conditions | 513 ], # conditions |
514 }, # target chrome_dll | 514 }, # target chrome_dll |
515 ], # targets | 515 ], # targets |
516 }], # OS=="mac" or OS=="win" | 516 }], # OS=="mac" or OS=="win" |
517 ], | 517 ], |
518 } | 518 } |
OLD | NEW |