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

Unified Diff: Source/web/web.gyp

Issue 332413004: Generate web, devtools files into their own sub-dirs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: more gn build changes Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/DateTimeChooserImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/web.gyp
diff --git a/Source/web/web.gyp b/Source/web/web.gyp
index 0cb942dced95b1a42365d0d1fffc0193739ae1db..fa63468d30b6c7c5813a0a99344c1535b723b349 100644
--- a/Source/web/web.gyp
+++ b/Source/web/web.gyp
@@ -29,6 +29,9 @@
#
{
+ 'variables': {
+ 'blink_web_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/web',
+ },
'includes': [
'../bindings/bindings.gypi',
'../core/core.gypi',
@@ -216,14 +219,14 @@
'<@(resources)',
],
'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/PickerCommon.h',
- '<(SHARED_INTERMEDIATE_DIR)/blink/PickerCommon.cpp',
+ '<(blink_web_output_dir)/PickerCommon.h',
+ '<(blink_web_output_dir)/PickerCommon.cpp',
],
'action': [
'python',
'../build/scripts/make-file-arrays.py',
- '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/PickerCommon.h',
- '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/PickerCommon.cpp',
+ '--out-h=<(blink_web_output_dir)/PickerCommon.h',
+ '--out-cpp=<(blink_web_output_dir)/PickerCommon.cpp',
'<@(resources)',
],
},
@@ -244,14 +247,14 @@
'<@(resources)'
],
'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.h',
- '<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.cpp',
+ '<(blink_web_output_dir)/CalendarPicker.h',
+ '<(blink_web_output_dir)/CalendarPicker.cpp',
],
'action': [
'python',
'../build/scripts/make-file-arrays.py',
- '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.h',
- '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CalendarPicker.cpp',
+ '--out-h=<(blink_web_output_dir)/CalendarPicker.h',
+ '--out-cpp=<(blink_web_output_dir)/CalendarPicker.cpp',
'<@(resources)',
],
},
@@ -269,14 +272,14 @@
'<@(resources)',
],
'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestionPicker.h',
- '<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestionPicker.cpp',
+ '<(blink_web_output_dir)/ColorSuggestionPicker.h',
+ '<(blink_web_output_dir)/ColorSuggestionPicker.cpp',
],
'action': [
'python',
'../build/scripts/make-file-arrays.py',
- '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestionPicker.h',
- '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestionPicker.cpp',
+ '--out-h=<(blink_web_output_dir)/ColorSuggestionPicker.h',
+ '--out-cpp=<(blink_web_output_dir)/ColorSuggestionPicker.cpp',
'<@(resources)',
],
},
« no previous file with comments | « Source/web/DateTimeChooserImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698