| 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 '../crypto/crypto.gyp:crypto', | 7 '../crypto/crypto.gyp:crypto', |
| 8 '../net/net.gyp:http_server', | 8 '../net/net.gyp:http_server', |
| 9 '../net/net.gyp:net', | 9 '../net/net.gyp:net', |
| 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 ], | 690 ], |
| 691 }], | 691 }], |
| 692 ['OS=="linux" and toolkit_uses_gtk==0', { | 692 ['OS=="linux" and toolkit_uses_gtk==0', { |
| 693 'dependencies': [ | 693 'dependencies': [ |
| 694 '../build/linux/system.gyp:dbus', | 694 '../build/linux/system.gyp:dbus', |
| 695 '../build/linux/system.gyp:fontconfig', | 695 '../build/linux/system.gyp:fontconfig', |
| 696 '../build/linux/system.gyp:x11', | 696 '../build/linux/system.gyp:x11', |
| 697 '../dbus/dbus.gyp:dbus', | 697 '../dbus/dbus.gyp:dbus', |
| 698 ], | 698 ], |
| 699 }], | 699 }], |
| 700 ['OS=="linux" and toolkit_views==1',{ | |
| 701 'dependencies': [ | |
| 702 '../ui/views/views.gyp:views', | |
| 703 ], | |
| 704 }], | |
| 705 ['OS=="mac"', { | 700 ['OS=="mac"', { |
| 706 'sources': [ | 701 'sources': [ |
| 707 # Build necessary Mozilla sources | 702 # Build necessary Mozilla sources |
| 708 '../third_party/mozilla/ComplexTextInputPanel.h', | 703 '../third_party/mozilla/ComplexTextInputPanel.h', |
| 709 '../third_party/mozilla/ComplexTextInputPanel.mm', | 704 '../third_party/mozilla/ComplexTextInputPanel.mm', |
| 710 '../third_party/mozilla/NSPasteboard+Utils.h', | 705 '../third_party/mozilla/NSPasteboard+Utils.h', |
| 711 '../third_party/mozilla/NSPasteboard+Utils.mm', | 706 '../third_party/mozilla/NSPasteboard+Utils.mm', |
| 712 ], | 707 ], |
| 713 'dependencies': [ | 708 'dependencies': [ |
| 714 'closure_blocks_leopard_compat', | 709 'closure_blocks_leopard_compat', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 'ENABLE_JAVA_BRIDGE', | 788 'ENABLE_JAVA_BRIDGE', |
| 794 ], | 789 ], |
| 795 }, { | 790 }, { |
| 796 'sources/': [ | 791 'sources/': [ |
| 797 ['exclude', '^browser/renderer_host/java/'], | 792 ['exclude', '^browser/renderer_host/java/'], |
| 798 ], | 793 ], |
| 799 }], | 794 }], |
| 800 ], | 795 ], |
| 801 } | 796 } |
| 802 | 797 |
| OLD | NEW |