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

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

Issue 16881011: Remove WEBKIT_DLL and replace it with COMPONENT_BUILD (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 7 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
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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 ['exclude', '(?<!Chromium)(CF|CG|Mac|OpenType|Win)\\.(cpp|mm?)$'], 621 ['exclude', '(?<!Chromium)(CF|CG|Mac|OpenType|Win)\\.(cpp|mm?)$'],
622 622
623 # Used only by mac. 623 # Used only by mac.
624 ['exclude', 'platform/Theme\\.cpp$'], 624 ['exclude', 'platform/Theme\\.cpp$'],
625 625
626 # *NEON.cpp files need special compile options. 626 # *NEON.cpp files need special compile options.
627 # They are moved to the webcore_arm_neon target. 627 # They are moved to the webcore_arm_neon target.
628 ['exclude', 'platform/graphics/cpu/arm/filters/.*NEON\\.(cpp|h)'], 628 ['exclude', 'platform/graphics/cpu/arm/filters/.*NEON\\.(cpp|h)'],
629 ], 629 ],
630 'conditions': [ 630 'conditions': [
631 ['component=="shared_library"', {
632 'defines': [
633 'WEBKIT_DLL',
634 ],
635 }],
636 ['use_default_render_theme==1', { 631 ['use_default_render_theme==1', {
637 'sources/': [ 632 'sources/': [
638 ['exclude', 'platform/chromium/PlatformThemeChromiumWin.h'], 633 ['exclude', 'platform/chromium/PlatformThemeChromiumWin.h'],
639 ['exclude', 'platform/chromium/PlatformThemeChromiumWin.cpp'], 634 ['exclude', 'platform/chromium/PlatformThemeChromiumWin.cpp'],
640 ['exclude', 'platform/chromium/ScrollbarThemeChromiumWin.cpp'], 635 ['exclude', 'platform/chromium/ScrollbarThemeChromiumWin.cpp'],
641 ['exclude', 'platform/chromium/ScrollbarThemeChromiumWin.h'], 636 ['exclude', 'platform/chromium/ScrollbarThemeChromiumWin.h'],
642 ], 637 ],
643 }, { # use_default_render_theme==0 638 }, { # use_default_render_theme==0
644 'sources/': [ 639 'sources/': [
645 ['exclude', 'platform/chromium/PlatformThemeChromiumDefault.cpp'], 640 ['exclude', 'platform/chromium/PlatformThemeChromiumDefault.cpp'],
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8InternalSettingsGenerated. h', 1114 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8InternalSettingsGenerated. h',
1120 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8InternalRuntimeFlags.cpp' , 1115 '<(SHARED_INTERMEDIATE_DIR)/webcore/bindings/V8InternalRuntimeFlags.cpp' ,
1121 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8InternalRuntimeFlags.h', 1116 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8InternalRuntimeFlags.h',
1122 ], 1117 ],
1123 'sources/': [ 1118 'sources/': [
1124 ['exclude', 'testing/js'], 1119 ['exclude', 'testing/js'],
1125 ], 1120 ],
1126 }, 1121 },
1127 ], # targets 1122 ], # targets
1128 } 1123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698