| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ui_resources', | 8 'target_name': 'ui_resources', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'variables': { | 10 'variables': { |
| 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources', | 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources', |
| 12 }, | 12 }, |
| 13 'actions': [ | 13 'actions': [ |
| 14 { | 14 { |
| 15 'action_name': 'ui_resources', | 15 'action_name': 'generate_ui_resources', |
| 16 'variables': { | 16 'variables': { |
| 17 'grit_grd_file': 'ui_resources.grd', | 17 'grit_grd_file': 'ui_resources.grd', |
| 18 }, | 18 }, |
| 19 'includes': [ '../../build/grit_action.gypi' ], | 19 'includes': [ '../../build/grit_action.gypi' ], |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 'action_name': 'webui_resources', | 22 'action_name': 'generate_webui_resources', |
| 23 'variables': { | 23 'variables': { |
| 24 'grit_grd_file': '../webui/resources/webui_resources.grd', | 24 'grit_grd_file': '../webui/resources/webui_resources.grd', |
| 25 }, | 25 }, |
| 26 'includes': [ '../../build/grit_action.gypi' ], | 26 'includes': [ '../../build/grit_action.gypi' ], |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 'action_name': 'ui_unscaled_resources', | 29 'action_name': 'generate_ui_unscaled_resources', |
| 30 'variables': { | 30 'variables': { |
| 31 'grit_grd_file': 'ui_unscaled_resources.grd', | 31 'grit_grd_file': 'ui_unscaled_resources.grd', |
| 32 }, | 32 }, |
| 33 'includes': [ '../../build/grit_action.gypi' ], | 33 'includes': [ '../../build/grit_action.gypi' ], |
| 34 }, | 34 }, |
| 35 ], | 35 ], |
| 36 'includes': [ '../../build/grit_target.gypi' ], | 36 'includes': [ '../../build/grit_target.gypi' ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 # This creates a pak file that contains the resources in src/ui. | 39 # This creates a pak file that contains the resources in src/ui. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 '<@(_inputs)', | 107 '<@(_inputs)', |
| 108 '<@(_outputs)' | 108 '<@(_outputs)' |
| 109 ], | 109 ], |
| 110 }, | 110 }, |
| 111 ], | 111 ], |
| 112 }], | 112 }], |
| 113 ], | 113 ], |
| 114 }, | 114 }, |
| 115 ], | 115 ], |
| 116 } | 116 } |
| OLD | NEW |