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 { | 5 { |
6 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base_static', | 7 '../base/base.gyp:base_static', |
8 '../crypto/crypto.gyp:crypto', | 8 '../crypto/crypto.gyp:crypto', |
9 '../net/net.gyp:http_server', | 9 '../net/net.gyp:http_server', |
10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 ], | 736 ], |
737 }], | 737 }], |
738 ['OS=="linux" and toolkit_uses_gtk==0', { | 738 ['OS=="linux" and toolkit_uses_gtk==0', { |
739 'dependencies': [ | 739 'dependencies': [ |
740 '../build/linux/system.gyp:dbus', | 740 '../build/linux/system.gyp:dbus', |
741 '../build/linux/system.gyp:fontconfig', | 741 '../build/linux/system.gyp:fontconfig', |
742 '../build/linux/system.gyp:x11', | 742 '../build/linux/system.gyp:x11', |
743 '../dbus/dbus.gyp:dbus', | 743 '../dbus/dbus.gyp:dbus', |
744 ], | 744 ], |
745 }], | 745 }], |
| 746 ['OS=="android"', { |
| 747 'sources!': [ |
| 748 # A main loop would be handled in Java. |
| 749 'browser/browser_main_loop.cc', |
| 750 'browser/browser_main_loop.h', |
| 751 ]}], |
746 ['OS=="mac"', { | 752 ['OS=="mac"', { |
747 'sources': [ | 753 'sources': [ |
748 # Build necessary Mozilla sources | 754 # Build necessary Mozilla sources |
749 '../third_party/mozilla/ComplexTextInputPanel.h', | 755 '../third_party/mozilla/ComplexTextInputPanel.h', |
750 '../third_party/mozilla/ComplexTextInputPanel.mm', | 756 '../third_party/mozilla/ComplexTextInputPanel.mm', |
751 '../third_party/mozilla/NSPasteboard+Utils.h', | 757 '../third_party/mozilla/NSPasteboard+Utils.h', |
752 '../third_party/mozilla/NSPasteboard+Utils.mm', | 758 '../third_party/mozilla/NSPasteboard+Utils.mm', |
753 ], | 759 ], |
754 'dependencies': [ | 760 'dependencies': [ |
755 'closure_blocks_leopard_compat', | 761 'closure_blocks_leopard_compat', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 'ENABLE_JAVA_BRIDGE', | 841 'ENABLE_JAVA_BRIDGE', |
836 ], | 842 ], |
837 }, { | 843 }, { |
838 'sources/': [ | 844 'sources/': [ |
839 ['exclude', '^browser/renderer_host/java/'], | 845 ['exclude', '^browser/renderer_host/java/'], |
840 ], | 846 ], |
841 }], | 847 }], |
842 ], | 848 ], |
843 } | 849 } |
844 | 850 |
OLD | NEW |