| 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../skia/skia.gyp:skia', | 7 '../skia/skia.gyp:skia', |
| 8 '../third_party/npapi/npapi.gyp:npapi', | 8 '../third_party/npapi/npapi.gyp:npapi', |
| 9 '../webkit/support/webkit_support.gyp:glue', | 9 '../webkit/support/webkit_support.gyp:glue', |
| 10 ], | 10 ], |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ['toolkit_uses_gtk == 1', { | 47 ['toolkit_uses_gtk == 1', { |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 '../build/linux/system.gyp:gtk', | 49 '../build/linux/system.gyp:gtk', |
| 50 ], | 50 ], |
| 51 'link_settings': { | 51 'link_settings': { |
| 52 'libraries': [ | 52 'libraries': [ |
| 53 '-lXext', | 53 '-lXext', |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 }], | 56 }], |
| 57 ['use_aura==1 and OS!="win"', { | |
| 58 'link_settings': { | |
| 59 'libraries': [ | |
| 60 '-lXext', | |
| 61 ], | |
| 62 }, | |
| 63 }], | |
| 64 ], | 57 ], |
| 65 } | 58 } |
| OLD | NEW |