summaryrefslogtreecommitdiff
path: root/gyp/styles.gypi
blob: 2c8772a87c2f7dd13fd50379b550038e8487b9b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  'targets': [
    {
      'target_name': 'touch_styles',
      'type': 'none',
      'hard_dependency': 1,
      'actions': [
        {
          'action_name': 'Touch Stylesheet Directory',
          'inputs': ['../styles'],
          'outputs': ['<(SHARED_INTERMEDIATE_DIR)/'], # need to specify a distinct directory
          'action': ['touch', '../styles'],
        }
      ],
    },
    {
      'target_name': 'bundle_styles',
      'type': 'none',
      'hard_dependency': 1,
      'dependencies': [ 'touch_styles' ], # required for xcode http://openradar.appspot.com/7232149
      'conditions': [
        ['platform_lib == "osx"', {
          'direct_dependent_settings': {
            'mac_bundle_resources': [ '../styles/styles' ],
          }
        }, {
          'direct_dependent_settings': {
            'copies': [{ 'files': [ '../styles/styles' ], 'destination': '<(PRODUCT_DIR)' }],
          }
        }]
      ],
    }
  ]
}