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

Unified Diff: Source/core/core_derived_sources.gyp

Issue 42313002: Move Color.*, DashArray and DrawLooper to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: correct patch set 1 mistake 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/core_derived_sources.gyp
diff --git a/Source/core/core_derived_sources.gyp b/Source/core/core_derived_sources.gyp
index 0581c844dc31528b048bd66d87744d163a5cd960..2232b3d3f10523248f7c4e2ea85e8ff8a5e11072 100644
--- a/Source/core/core_derived_sources.gyp
+++ b/Source/core/core_derived_sources.gyp
@@ -603,22 +603,6 @@
'<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp',
],
},
- {
- 'action_name': 'ColorData',
- 'inputs': [
- 'platform/ColorData.gperf',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
- ],
- 'action': [
- '<(gperf_exe)',
- '--key-positions=*',
- '-D', '-s', '2',
- '<@(_inputs)',
- '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
- ],
- },
],
'rules': [
{
@@ -637,6 +621,24 @@
],
'msvs_cygwin_shell': 1,
},
+ {
+ 'rule_name': 'gperf',
+ 'extension': 'gperf',
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp',
+ ],
+ 'inputs': [
+ '../build/scripts/make-hash-tools.pl',
+ ],
+ 'msvs_cygwin_shell': 0,
+ 'action': [
+ '<(perl_exe)',
+ '../build/scripts/make-hash-tools.pl',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ '<(RULE_INPUT_PATH)',
+ '<(gperf_exe)',
+ ],
+ },
abarth-chromium 2013/10/25 15:24:18 This looks like a bad merge. You don't need to ad
rwlbuis 2013/10/25 15:44:28 Done.
],
},
],
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSParser.h » ('j') | Source/platform/HashTools.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698