summaryrefslogtreecommitdiffstats
path: root/src/core/resources/repack_locales.gypi
blob: ca350791250364bf8a92666fb68071aee47c9997 (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
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'variables': {
    'repack_extra_flags%': [],
    'repack_output_dir%': '<(SHARED_INTERMEDIATE_DIR)',
    'repack_locales_script%': ['python', '<(qtwebengine_root)/tools/buildscripts/repack_locales.py'],
  },
  'inputs': [
    '<(qtwebengine_root)/tools/buildscripts/repack_locales.py',
    '<!@pymod_do_main(repack_locales -i -p <(OS) -s <(SHARED_INTERMEDIATE_DIR) -x <(repack_output_dir) <(repack_extra_flags) <(locales))'
  ],
  'outputs': [
    '<!@pymod_do_main(repack_locales -o -p <(OS) -s <(SHARED_INTERMEDIATE_DIR) -x <(repack_output_dir) <(locales))'
  ],
  'action': [
    '<@(repack_locales_script)',
    '-p', '<(OS)',
    '-s', '<(SHARED_INTERMEDIATE_DIR)',
    '-x', '<(repack_output_dir)/.',
    '<@(repack_extra_flags)',
    '<@(locales)',
  ],
}