Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: Source/core/core.gyp

Issue 1193453003: Remove now-unnecessary setting of /bigobj (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698