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

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

Issue 32823017: Move FloatPolygon.* and WindRule.h to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Export classes/enum for win/mac Created 7 years, 2 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
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | 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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 ['exclude', 'platform/chromium/PlatformThemeChromiumWin\\.(cpp|h)'], 800 ['exclude', 'platform/chromium/PlatformThemeChromiumWin\\.(cpp|h)'],
801 ], 801 ],
802 }, { # use_default_render_theme==0 802 }, { # use_default_render_theme==0
803 'sources/': [ 803 'sources/': [
804 ['exclude', 'platform/ScrollbarThemeGtkOrAura\\.(cpp|h)'], 804 ['exclude', 'platform/ScrollbarThemeGtkOrAura\\.(cpp|h)'],
805 ['exclude', 'platform/chromium/PlatformThemeChromiumDefault\\.(cpp|h )'], 805 ['exclude', 'platform/chromium/PlatformThemeChromiumDefault\\.(cpp|h )'],
806 ], 806 ],
807 }], 807 }],
808 ], 808 ],
809 }, 809 },
810 {
811 'target_name': 'webcore_platform_geometry',
812 'type': 'static_library',
813 'dependencies': [
814 'webcore_prerequisites',
815 ],
816 'sources': [
817 '<@(webcore_platform_geometry_files)',
818 ],
819 },
820 # The *NEON.cpp files fail to compile when -mthumb is passed. Force 810 # The *NEON.cpp files fail to compile when -mthumb is passed. Force
821 # them to build in ARM mode. 811 # them to build in ARM mode.
822 # See https://bugs.webkit.org/show_bug.cgi?id=62916. 812 # See https://bugs.webkit.org/show_bug.cgi?id=62916.
823 { 813 {
824 'target_name': 'webcore_arm_neon', 814 'target_name': 'webcore_arm_neon',
825 'conditions': [ 815 'conditions': [
826 ['target_arch=="arm"', { 816 ['target_arch=="arm"', {
827 'type': 'static_library', 817 'type': 'static_library',
828 'dependencies': [ 818 'dependencies': [
829 'webcore_prerequisites', 819 'webcore_prerequisites',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 # Disable c4267 warnings until we fix size_t to int truncations. 977 # Disable c4267 warnings until we fix size_t to int truncations.
988 'msvs_disabled_warnings': [ 4267, 4334, ], 978 'msvs_disabled_warnings': [ 4267, 4334, ],
989 }, 979 },
990 { 980 {
991 'target_name': 'webcore', 981 'target_name': 'webcore',
992 'type': 'none', 982 'type': 'none',
993 'dependencies': [ 983 'dependencies': [
994 'webcore_dom', 984 'webcore_dom',
995 'webcore_html', 985 'webcore_html',
996 'webcore_platform', 986 'webcore_platform',
997 'webcore_platform_geometry',
998 'webcore_remaining', 987 'webcore_remaining',
999 'webcore_rendering', 988 'webcore_rendering',
1000 'webcore_svg', 989 'webcore_svg',
1001 # Exported. 990 # Exported.
1002 'webcore_derived', 991 'webcore_derived',
1003 '../wtf/wtf.gyp:wtf', 992 '../wtf/wtf.gyp:wtf',
1004 '<(DEPTH)/skia/skia.gyp:skia', 993 '<(DEPTH)/skia/skia.gyp:skia',
1005 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 994 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
1006 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', 995 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms',
1007 '<(DEPTH)/url/url.gyp:url_lib', 996 '<(DEPTH)/url/url.gyp:url_lib',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', 1075 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h',
1087 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', 1076 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp',
1088 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', 1077 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h',
1089 ], 1078 ],
1090 'sources/': [ 1079 'sources/': [
1091 ['exclude', 'testing/js'], 1080 ['exclude', 'testing/js'],
1092 ], 1081 ],
1093 }, 1082 },
1094 ], # targets 1083 ], # targets
1095 } 1084 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698