Index: Source/platform/blink_platform_tests.gyp |
diff --git a/Source/platform/blink_platform_tests.gyp b/Source/platform/blink_platform_tests.gyp |
index bf2bb71d1358b786d3fe629ecfa9f076306b3daf..b7a90d03f63d0fce2cb635571bb42edfd3b670d8 100644 |
--- a/Source/platform/blink_platform_tests.gyp |
+++ b/Source/platform/blink_platform_tests.gyp |
@@ -33,9 +33,25 @@ |
'blink_platform.gypi', |
], |
'targets': [{ |
+ 'target_name': 'blink_platform_unittests_support', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ 'platform_derived_sources.gyp:make_platform_derived_sources', |
+ '../config.gyp:unittest_config', |
+ ], |
+ 'include_dirs': [ |
+ '<(SHARED_INTERMEDIATE_DIR)/blink', |
+ ], |
+ 'sources': [ |
+ '<@(platform_test_support_files)', |
+ '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.cpp', |
+ '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', |
abarth-chromium
2013/12/04 05:45:26
I see, the problem is that you've moved these file
|
+ ], |
+ }, { |
'target_name': 'blink_platform_unittests', |
'type': 'executable', |
'dependencies': [ |
+ 'blink_platform_unittests_support', |
'blink_platform.gyp:blink_platform', |
'blink_platform.gyp:blink_common', |
'../config.gyp:unittest_config', |
@@ -44,6 +60,9 @@ |
'../wtf/wtf_tests.gyp:wtf_unittest_helpers', |
'<(DEPTH)/url/url.gyp:url_lib', |
], |
+ 'include_dirs': [ |
+ '<(SHARED_INTERMEDIATE_DIR)/blink', |
+ ], |
'sources': [ |
'<@(platform_test_files)', |
], |