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

Side by Side Diff: chrome/chrome.gyp

Issue 5977007: Expand scope of bookmark manager resources to all component extension resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'chrome_resources_grds': [ 52 'chrome_resources_grds': [
53 # Data resources. 53 # Data resources.
54 'browser/browser_resources.grd', 54 'browser/browser_resources.grd',
55 'common/common_resources.grd', 55 'common/common_resources.grd',
56 'renderer/renderer_resources.grd', 56 'renderer/renderer_resources.grd',
57 ], 57 ],
58 'chrome_extra_resources_grds': [ 58 'chrome_extra_resources_grds': [
59 # These resources end up in resources.pak because they are resources 59 # These resources end up in resources.pak because they are resources
60 # used by internal pages. Putting them in a spearate pak file makes 60 # used by internal pages. Putting them in a spearate pak file makes
61 # it easier for us to reference them internally. 61 # it easier for us to reference them internally.
62 'browser/resources/bookmark_manager_resources.grd', 62 'browser/resources/component_extension_resources.grd',
63 'browser/resources/net_internals_resources.grd', 63 'browser/resources/net_internals_resources.grd',
64 'browser/resources/shared_resources.grd' 64 'browser/resources/shared_resources.grd'
65 ], 65 ],
66 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], 66 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'],
67 'grit_cmd': ['python', '../tools/grit/grit.py'], 67 'grit_cmd': ['python', '../tools/grit/grit.py'],
68 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 68 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
69 # TODO: remove this helper when we have loops in GYP 69 # TODO: remove this helper when we have loops in GYP
70 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], 70 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'],
71 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 71 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
72 'conditions': [ 72 'conditions': [
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1535 'repack_path': '../tools/data_pack/repack.py', 1535 'repack_path': '../tools/data_pack/repack.py',
1536 }, 1536 },
1537 'dependencies': [ 1537 'dependencies': [
1538 'chrome_extra_resources', 1538 'chrome_extra_resources',
1539 ], 1539 ],
1540 'actions': [ 1540 'actions': [
1541 { 1541 {
1542 'action_name': 'repack_resources', 1542 'action_name': 'repack_resources',
1543 'variables': { 1543 'variables': {
1544 'pak_inputs': [ 1544 'pak_inputs': [
1545 '<(grit_out_dir)/bookmark_manager_resources.pak', 1545 '<(grit_out_dir)/component_extension_resources.pak',
1546 '<(grit_out_dir)/net_internals_resources.pak', 1546 '<(grit_out_dir)/net_internals_resources.pak',
1547 '<(grit_out_dir)/shared_resources.pak', 1547 '<(grit_out_dir)/shared_resources.pak',
1548 ], 1548 ],
1549 }, 1549 },
1550 'inputs': [ 1550 'inputs': [
1551 '<(repack_path)', 1551 '<(repack_path)',
1552 '<@(pak_inputs)', 1552 '<@(pak_inputs)',
1553 ], 1553 ],
1554 'outputs': [ 1554 'outputs': [
1555 '<(PRODUCT_DIR)/resources.pak', 1555 '<(PRODUCT_DIR)/resources.pak',
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1931 }], # targets 1931 }], # targets
1932 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1932 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1933 ], # 'conditions' 1933 ], # 'conditions'
1934 } 1934 }
1935 1935
1936 # Local Variables: 1936 # Local Variables:
1937 # tab-width:2 1937 # tab-width:2
1938 # indent-tabs-mode:nil 1938 # indent-tabs-mode:nil
1939 # End: 1939 # End:
1940 # vim: set expandtab tabstop=2 shiftwidth=2: 1940 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698