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

Side by Side Diff: chrome/chrome_repack_pseudo_locales.gypi

Issue 8430011: Revert 107967 - Introduces chromium_resources.gyp to factor out Chrome resource generation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « chrome/chrome_repack_locales.gypi ('k') | chrome/chrome_repack_resources.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011 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 'action_name': 'repack_pseudo_locales',
6 'variables': {
7 'conditions': [
8 ['branding=="Chrome"', {
9 'branding_flag': ['-b', 'google_chrome',],
10 }, { # else: branding!="Chrome"
11 'branding_flag': ['-b', 'chromium',],
12 }],
13 ]
14 },
15 'inputs': [
16 'tools/build/repack_locales.py',
17 '<!@pymod_do_main(repack_locales -i <(branding_flag) -g <(grit_out_dir) -s < (SHARED_INTERMEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))'
18 ],
19 'conditions': [
20 ['OS == "mac"', {
21 'outputs': [
22 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHARED_INTER MEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))'
23 ],
24 }, { # else 'OS != "mac"'
25 'outputs': [
26 '<(INTERMEDIATE_DIR)/<(pseudo_locales).pak'
27 ],
28 }],
29 ],
30 'action': [
31 '<@(repack_locales_cmd)',
32 '<@(branding_flag)',
33 '-g', '<(grit_out_dir)',
34 '-s', '<(SHARED_INTERMEDIATE_DIR)',
35 '-x', '<(INTERMEDIATE_DIR)',
36 '<@(pseudo_locales)',
37 ],
38 }
OLDNEW
« no previous file with comments | « chrome/chrome_repack_locales.gypi ('k') | chrome/chrome_repack_resources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698