Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: remoting/grit_action.gypi

Issue 11087059: Add common_resources.grd for non-localizeable chromoting resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 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.
4
5 # This file is mostly a copy of base/grit_action.gypi . There are two
6 # differences:
7 # 1. Remoting resources are build with a different resource_ids file.
8 # 2. File specified by variable base_grit_grd_file is used to generate list of
9 # inputs and outputs.
10
11 {
12 'variables': {
13 'grit_cmd': ['python', '<(DEPTH)/tools/grit/grit.py'],
14 },
15 'inputs': [
16 '<!@pymod_do_main(grit_info <@(grit_defines) '
17 '--inputs <(base_grit_grd_file) -fresource_ids)',
18 ],
19 'outputs': [
20 '<!@pymod_do_main(grit_info <@(grit_defines) '
21 '--outputs \'<(grit_out_dir)\' <(base_grit_grd_file) -fresource_ids)',
22 ],
23 'action': ['<@(grit_cmd)',
24 '-i', '<(grit_grd_file)', 'build',
25 '-fresource_ids',
26 '-o', '<(grit_out_dir)',
27 '<@(grit_defines)' ],
28 'msvs_cygwin_shell': 0,
29 'message': 'Generating resources from <(grit_grd_file)',
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698