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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_plugin', | 8 'target_name': 'content_plugin', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 'conditions': [ | 50 'conditions': [ |
51 ['OS=="win"', { | 51 ['OS=="win"', { |
52 'include_dirs': [ | 52 'include_dirs': [ |
53 '<(DEPTH)/third_party/wtl/include', | 53 '<(DEPTH)/third_party/wtl/include', |
54 ], | 54 ], |
55 }], | 55 }], |
56 ['toolkit_uses_gtk == 1', { | 56 ['toolkit_uses_gtk == 1', { |
57 'dependencies': [ | 57 'dependencies': [ |
58 '../build/linux/system.gyp:gtk', | 58 '../build/linux/system.gyp:gtk', |
59 ], | 59 ], |
60 'link_settings': { | |
61 'libraries': [ | |
62 '-lXext', | |
jam
2011/08/19 21:35:13
I'm not familiar with this, so I defer to a Linux
Evan Martin
2011/08/19 21:41:01
For this kind of change it's sometimes helpful for
Paweł Hajdan Jr.
2011/08/19 21:47:41
I was thinking about a comment, but there are seve
| |
63 ], | |
64 }, | |
60 }], | 65 }], |
61 ], | 66 ], |
62 }, | 67 }, |
63 ], | 68 ], |
64 } | 69 } |
OLD | NEW |