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

Side by Side Diff: chrome/chrome.gyp

Issue 6299002: [Sync] Port about:sync to DOMUI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added workaround for bug 69633 Created 9 years, 11 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
« no previous file with comments | « chrome/browser/sync/sync_ui_util.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'browser/browser_resources.grd', 55 'browser/browser_resources.grd',
56 'common/common_resources.grd', 56 'common/common_resources.grd',
57 'renderer/renderer_resources.grd', 57 'renderer/renderer_resources.grd',
58 ], 58 ],
59 'chrome_extra_resources_grds': [ 59 'chrome_extra_resources_grds': [
60 # These resources end up in resources.pak because they are resources 60 # These resources end up in resources.pak because they are resources
61 # used by internal pages. Putting them in a spearate pak file makes 61 # used by internal pages. Putting them in a spearate pak file makes
62 # it easier for us to reference them internally. 62 # it easier for us to reference them internally.
63 'browser/resources/component_extension_resources.grd', 63 'browser/resources/component_extension_resources.grd',
64 'browser/resources/net_internals_resources.grd', 64 'browser/resources/net_internals_resources.grd',
65 'browser/resources/shared_resources.grd' 65 'browser/resources/shared_resources.grd',
66 'browser/resources/sync_internals_resources.grd',
66 ], 67 ],
67 'grit_info_cmd': ['python', '../tools/grit/grit_info.py', 68 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',
68 '<@(grit_defines)'], 69 '<@(grit_defines)'],
69 'grit_cmd': ['python', '../tools/grit/grit.py'], 70 'grit_cmd': ['python', '../tools/grit/grit.py'],
70 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 71 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
71 # TODO: remove this helper when we have loops in GYP 72 # TODO: remove this helper when we have loops in GYP
72 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], 73 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'],
73 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 74 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
74 'conditions': [ 75 'conditions': [
75 ['OS=="win"', { 76 ['OS=="win"', {
(...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 'chrome_extra_resources', 1504 'chrome_extra_resources',
1504 ], 1505 ],
1505 'actions': [ 1506 'actions': [
1506 { 1507 {
1507 'action_name': 'repack_resources', 1508 'action_name': 'repack_resources',
1508 'variables': { 1509 'variables': {
1509 'pak_inputs': [ 1510 'pak_inputs': [
1510 '<(grit_out_dir)/component_extension_resources.pak', 1511 '<(grit_out_dir)/component_extension_resources.pak',
1511 '<(grit_out_dir)/net_internals_resources.pak', 1512 '<(grit_out_dir)/net_internals_resources.pak',
1512 '<(grit_out_dir)/shared_resources.pak', 1513 '<(grit_out_dir)/shared_resources.pak',
1514 '<(grit_out_dir)/sync_internals_resources.pak',
1513 ], 1515 ],
1514 }, 1516 },
1515 'inputs': [ 1517 'inputs': [
1516 '<(repack_path)', 1518 '<(repack_path)',
1517 '<@(pak_inputs)', 1519 '<@(pak_inputs)',
1518 ], 1520 ],
1519 'outputs': [ 1521 'outputs': [
1520 '<(PRODUCT_DIR)/resources.pak', 1522 '<(PRODUCT_DIR)/resources.pak',
1521 ], 1523 ],
1522 'action': ['python', '<(repack_path)', '<@(_outputs)', 1524 'action': ['python', '<(repack_path)', '<@(_outputs)',
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
1897 }], # targets 1899 }], # targets
1898 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1900 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1899 ], # 'conditions' 1901 ], # 'conditions'
1900 } 1902 }
1901 1903
1902 # Local Variables: 1904 # Local Variables:
1903 # tab-width:2 1905 # tab-width:2
1904 # indent-tabs-mode:nil 1906 # indent-tabs-mode:nil
1905 # End: 1907 # End:
1906 # vim: set expandtab tabstop=2 shiftwidth=2: 1908 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/sync/sync_ui_util.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698