| 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 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 }, { | 792 }, { |
| 793 'sources!': [ | 793 'sources!': [ |
| 794 'layout/LayoutThemeFontProviderWin.cpp', | 794 'layout/LayoutThemeFontProviderWin.cpp', |
| 795 'layout/LayoutThemeWin.cpp', | 795 'layout/LayoutThemeWin.cpp', |
| 796 'layout/LayoutThemeWin.h', | 796 'layout/LayoutThemeWin.h', |
| 797 ], | 797 ], |
| 798 'libraries': [ | 798 'libraries': [ |
| 799 '-lm -lstdc++', | 799 '-lm -lstdc++', |
| 800 ], | 800 ], |
| 801 }], | 801 }], |
| 802 # Enable bigobj to fix fatal error C1128: number of sections | |
| 803 # exceeded object file format limit while compiling Document.cpp. | |
| 804 ['OS=="win" and target_arch=="x64"', { | |
| 805 'msvs_settings': { | |
| 806 'VCCLCompilerTool': { | |
| 807 'AdditionalOptions': ['/bigobj'], | |
| 808 }, | |
| 809 }, | |
| 810 }], | |
| 811 ['OS=="win" and chromium_win_pch==1', { | 802 ['OS=="win" and chromium_win_pch==1', { |
| 812 'sources/': [ | 803 'sources/': [ |
| 813 ['include', '<(DEPTH)/third_party/WebKit/Source/build/win/Precom
pile.cpp'], | 804 ['include', '<(DEPTH)/third_party/WebKit/Source/build/win/Precom
pile.cpp'], |
| 814 ], | 805 ], |
| 815 }], | 806 }], |
| 816 ['OS=="mac"', { | 807 ['OS=="mac"', { |
| 817 'sources!': [ | 808 'sources!': [ |
| 818 # LayoutThemeSkia is not used on mac since LayoutThemeMac | 809 # LayoutThemeSkia is not used on mac since LayoutThemeMac |
| 819 # does not reference the Skia code that is used by Windows, Linu
x and Android. | 810 # does not reference the Skia code that is used by Windows, Linu
x and Android. |
| 820 'layout/LayoutThemeSkia.cpp', | 811 'layout/LayoutThemeSkia.cpp', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 'libraries': [ | 872 'libraries': [ |
| 882 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', | 873 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', |
| 883 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', | 874 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', |
| 884 ] | 875 ] |
| 885 }, | 876 }, |
| 886 }], | 877 }], |
| 887 ], | 878 ], |
| 888 }, | 879 }, |
| 889 ], # targets | 880 ], # targets |
| 890 } | 881 } |
| OLD | NEW |