Getting rid of GetDefaultProfile in chromeos/login code.
[chromium-blink-merge.git] / ui / resources / ui_resources.gyp
blobdbc800c962918d4a6c7921419be0a97b4f7e34db
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'targets': [
7     {
8       'target_name': 'ui_resources',
9       'type': 'none',
10       'variables': {
11         'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources',
12       },
13       'actions': [
14         {
15           'action_name': 'ui_resources',
16           'variables': {
17             'grit_grd_file': 'ui_resources.grd',
18           },
19           'includes': [ '../../build/grit_action.gypi' ],
20         },
21         {
22           'action_name': 'webui_resources',
23           'variables': {
24             'grit_grd_file': '../webui/resources/webui_resources.grd',
25           },
26           'includes': [ '../../build/grit_action.gypi' ],
27         },
28         {
29           'action_name': 'ui_unscaled_resources',
30           'variables': {
31             'grit_grd_file': 'ui_unscaled_resources.grd',
32           },
33           'includes': [ '../../build/grit_action.gypi' ],
34         },
35       ],
36       'includes': [ '../../build/grit_target.gypi' ],
37     },
38     {
39       # This creates a pak file that contains the resources in src/ui.
40       # This pak file can be used by tests.
41       'target_name': 'ui_test_pak',
42       'type': 'none',
43       'dependencies': [
44         '../base/strings/ui_strings.gyp:ui_strings',
45         'ui_resources',
46       ],
47       'variables': {
48         'repack_path': '../../tools/grit/grit/format/repack.py',
49       },
50       'actions': [
51         {
52           'action_name': 'repack_ui_test_pack',
53           'variables': {
54             'pak_inputs': [
55               '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_en-US.pak',
56               '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_percent.pak',
57               '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/webui_resources.pak',
58               '<(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-US.pak',
59             ],
60           },
61           'inputs': [
62             '<(repack_path)',
63             '<@(pak_inputs)',
64           ],
65           'outputs': [
66             '<(PRODUCT_DIR)/ui_test.pak',
67           ],
68           'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'],
69         },
70       ],
71     },
72   ],