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

Unified Diff: Source/platform/platform_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/platform/platform_derived_sources.gyp
diff --git a/Source/platform/platform_derived_sources.gyp b/Source/platform/platform_derived_sources.gyp
index 79820b5488a8b075fd7fa7399e682cce7998164a..d32a38b3c206e525c70e92e4a4889f35fb5ec1c4 100644
--- a/Source/platform/platform_derived_sources.gyp
+++ b/Source/platform/platform_derived_sources.gyp
@@ -32,6 +32,7 @@
'includes': [
'../build/features.gypi',
'../build/scripts/scripts.gypi',
+ '../core/core.gypi',
abarth-chromium 2013/10/25 15:24:18 This is a bad dependency. You should move the gpe
rwlbuis 2013/10/25 15:44:28 Done.
],
'targets': [
@@ -58,6 +59,22 @@
'<(SHARED_INTERMEDIATE_DIR)/blink',
],
},
+ {
abarth-chromium 2013/10/25 15:24:18 bad indent
rwlbuis 2013/10/25 15:44:28 Done.
+ 'action_name': 'ColorData',
+ 'inputs': [
+ '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',
+ ],
+ },
]
},
],

Powered by Google App Engine
This is Rietveld 408576698