| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 821 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 822 ], | 822 ], |
| 823 }, | 823 }, |
| 824 },{ # OS!="mac" | 824 },{ # OS!="mac" |
| 825 'sources!': [ | 825 'sources!': [ |
| 826 'editing/commands/SmartReplaceCF.cpp', | 826 'editing/commands/SmartReplaceCF.cpp', |
| 827 'layout/LayoutThemeMac.h', | 827 'layout/LayoutThemeMac.h', |
| 828 'layout/LayoutThemeMac.mm', | 828 'layout/LayoutThemeMac.mm', |
| 829 ], | 829 ], |
| 830 }], | 830 }], |
| 831 ['OS == "android" and target_arch == "ia32" and gcc_version == 46',
{ | |
| 832 # Due to a bug in gcc 4.6 in android NDK, we get warnings about un
initialized variable. | |
| 833 'cflags': ['-Wno-uninitialized'], | |
| 834 }], | |
| 835 ['OS != "linux"', { | 831 ['OS != "linux"', { |
| 836 'sources!': [ | 832 'sources!': [ |
| 837 'layout/LayoutThemeLinux.cpp', | 833 'layout/LayoutThemeLinux.cpp', |
| 838 'layout/LayoutThemeLinux.h', | 834 'layout/LayoutThemeLinux.h', |
| 839 ], | 835 ], |
| 840 }], | 836 }], |
| 841 ['OS != "linux" and OS != "android"', { | 837 ['OS != "linux" and OS != "android"', { |
| 842 'sources!': [ | 838 'sources!': [ |
| 843 'layout/LayoutThemeFontProviderLinux.cpp', | 839 'layout/LayoutThemeFontProviderLinux.cpp', |
| 844 ], | 840 ], |
| (...skipping 28 matching lines...) Expand all Loading... |
| 873 'libraries': [ | 869 'libraries': [ |
| 874 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', | 870 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', |
| 875 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', | 871 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', |
| 876 ] | 872 ] |
| 877 }, | 873 }, |
| 878 }], | 874 }], |
| 879 ], | 875 ], |
| 880 }, | 876 }, |
| 881 ], # targets | 877 ], # targets |
| 882 } | 878 } |
| OLD | NEW |