summaryrefslogtreecommitdiff
path: root/gyp/styles.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'gyp/styles.gypi')
-rw-r--r--gyp/styles.gypi14
1 files changed, 11 insertions, 3 deletions
diff --git a/gyp/styles.gypi b/gyp/styles.gypi
index 02cdea6e04..e1cd344fe1 100644
--- a/gyp/styles.gypi
+++ b/gyp/styles.gypi
@@ -18,9 +18,17 @@
'type': 'none',
'hard_dependency': 1,
'dependencies': [ 'touch_styles' ], # required for xcode http://openradar.appspot.com/7232149
- 'direct_dependent_settings': {
- 'mac_bundle_resources': [ '../styles/styles' ],
- }
+ 'conditions': [
+ ['OS == "mac"', {
+ 'direct_dependent_settings': {
+ 'mac_bundle_resources': [ '../styles/styles' ],
+ }
+ }, {
+ 'direct_dependent_settings': {
+ 'copies': [{ 'files': [ '../styles/styles' ], 'destination': '<(PRODUCT_DIR)' }],
+ }
+ }]
+ ],
}
]
}