| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 }, { # OS!="mac" | 569 }, { # OS!="mac" |
| 570 'sources!': [ | 570 'sources!': [ |
| 571 'editing/SmartReplaceCF.cpp', | 571 'editing/SmartReplaceCF.cpp', |
| 572 ], | 572 ], |
| 573 }], | 573 }], |
| 574 ['OS=="win" and chromium_win_pch==1', { | 574 ['OS=="win" and chromium_win_pch==1', { |
| 575 'sources/': [ | 575 'sources/': [ |
| 576 ['include', '<(DEPTH)/third_party/WebKit/Source/build/win/Precompile
.cpp'], | 576 ['include', '<(DEPTH)/third_party/WebKit/Source/build/win/Precompile
.cpp'], |
| 577 ], | 577 ], |
| 578 }], | 578 }], |
| 579 ['use_default_render_theme==0 and OS != "android"', { |
| 580 'sources!': [ |
| 581 'paint/ThemePainterDefault.cpp', |
| 582 'paint/ThemePainterDefault.h', |
| 583 ], |
| 584 }], |
| 579 ], | 585 ], |
| 580 # Disable c4267 warnings until we fix size_t to int truncations. | 586 # Disable c4267 warnings until we fix size_t to int truncations. |
| 581 'msvs_disabled_warnings': [ 4267, 4334, ], | 587 'msvs_disabled_warnings': [ 4267, 4334, ], |
| 582 }, | 588 }, |
| 583 { | 589 { |
| 584 # GN version: //third_party/WebKit/Source/core:core | 590 # GN version: //third_party/WebKit/Source/core:core |
| 585 'target_name': 'webcore', | 591 'target_name': 'webcore', |
| 586 'type': 'none', | 592 'type': 'none', |
| 587 'dependencies': [ | 593 'dependencies': [ |
| 588 'webcore_dom', | 594 'webcore_dom', |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 '../..', # WebKit | 758 '../..', # WebKit |
| 753 # for testing_files | 759 # for testing_files |
| 754 'testing', | 760 'testing', |
| 755 'testing/v8', | 761 'testing/v8', |
| 756 ], | 762 ], |
| 757 'conditions': [ | 763 'conditions': [ |
| 758 ['use_default_render_theme==0 and OS != "android"', { | 764 ['use_default_render_theme==0 and OS != "android"', { |
| 759 'sources!': [ | 765 'sources!': [ |
| 760 'layout/LayoutThemeDefault.cpp', | 766 'layout/LayoutThemeDefault.cpp', |
| 761 'layout/LayoutThemeDefault.h', | 767 'layout/LayoutThemeDefault.h', |
| 768 'paint/ThemePainterDefault.cpp', |
| 769 'paint/ThemePainterDefault.h', |
| 762 ], | 770 ], |
| 763 }], | 771 }], |
| 764 ['OS=="win"', { | 772 ['OS=="win"', { |
| 765 # In generated bindings code: 'switch contains default but no | 773 # In generated bindings code: 'switch contains default but no |
| 766 # case'. | 774 # case'. |
| 767 # Disable c4267 warnings until we fix size_t to int truncations. | 775 # Disable c4267 warnings until we fix size_t to int truncations. |
| 768 # 4701 and 4702 are disabled because of issues in Bison-generated | 776 # 4701 and 4702 are disabled because of issues in Bison-generated |
| 769 # XPathGrammar.cpp and CSSGrammar.cpp. | 777 # XPathGrammar.cpp and CSSGrammar.cpp. |
| 770 # Disable c4267 warnings until we fix size_t to int truncations. | 778 # Disable c4267 warnings until we fix size_t to int truncations. |
| 771 'msvs_disabled_warnings': [ 4065, 4267, 4305, 4334, 4701, 4702 ], | 779 'msvs_disabled_warnings': [ 4065, 4267, 4305, 4334, 4701, 4702 ], |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 'libraries': [ | 871 'libraries': [ |
| 864 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', | 872 '<!@(pkg-config --libs ipp|sed s/-L//)/libipps_l.a', |
| 865 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', | 873 '<!@(pkg-config --libs ipp|sed s/-L//)/libippcore_l.a', |
| 866 ] | 874 ] |
| 867 }, | 875 }, |
| 868 }], | 876 }], |
| 869 ], | 877 ], |
| 870 }, | 878 }, |
| 871 ], # targets | 879 ], # targets |
| 872 } | 880 } |
| OLD | NEW |