Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 'browser/browser_resources.grd', | 53 'browser/browser_resources.grd', |
| 54 'common/common_resources.grd', | 54 'common/common_resources.grd', |
| 55 'renderer/renderer_resources.grd', | 55 'renderer/renderer_resources.grd', |
| 56 ], | 56 ], |
| 57 'chrome_extra_resources_grds': [ | 57 'chrome_extra_resources_grds': [ |
| 58 # These resources end up in resources.pak because they are resources | 58 # These resources end up in resources.pak because they are resources |
| 59 # used by internal pages. Putting them in a spearate pak file makes | 59 # used by internal pages. Putting them in a spearate pak file makes |
| 60 # it easier for us to reference them internally. | 60 # it easier for us to reference them internally. |
| 61 'browser/resources/bookmark_manager_resources.grd', | 61 'browser/resources/bookmark_manager_resources.grd', |
| 62 'browser/resources/net_internals_resources.grd', | 62 'browser/resources/net_internals_resources.grd', |
| 63 'browser/resources/gpu_resources.grd', | |
|
mmenke
2010/11/23 19:27:13
nit: Should be in alphabetical order.
nduca
2010/11/23 19:39:01
Done.
| |
| 63 'browser/resources/shared_resources.grd' | 64 'browser/resources/shared_resources.grd' |
| 64 ], | 65 ], |
| 65 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], | 66 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], |
| 66 'grit_cmd': ['python', '../tools/grit/grit.py'], | 67 'grit_cmd': ['python', '../tools/grit/grit.py'], |
| 67 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 68 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 68 # TODO: remove this helper when we have loops in GYP | 69 # TODO: remove this helper when we have loops in GYP |
| 69 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 70 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
| 70 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', | 71 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', |
| 71 'conditions': [ | 72 'conditions': [ |
| 72 ['OS=="win"', { | 73 ['OS=="win"', { |
| (...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1513 'dependencies': [ | 1514 'dependencies': [ |
| 1514 'chrome_extra_resources', | 1515 'chrome_extra_resources', |
| 1515 ], | 1516 ], |
| 1516 'actions': [ | 1517 'actions': [ |
| 1517 { | 1518 { |
| 1518 'action_name': 'repack_resources', | 1519 'action_name': 'repack_resources', |
| 1519 'variables': { | 1520 'variables': { |
| 1520 'pak_inputs': [ | 1521 'pak_inputs': [ |
| 1521 '<(grit_out_dir)/bookmark_manager_resources.pak', | 1522 '<(grit_out_dir)/bookmark_manager_resources.pak', |
| 1522 '<(grit_out_dir)/net_internals_resources.pak', | 1523 '<(grit_out_dir)/net_internals_resources.pak', |
| 1524 '<(grit_out_dir)/gpu_resources.pak', | |
| 1523 '<(grit_out_dir)/shared_resources.pak', | 1525 '<(grit_out_dir)/shared_resources.pak', |
| 1524 ], | 1526 ], |
| 1525 }, | 1527 }, |
| 1526 'inputs': [ | 1528 'inputs': [ |
| 1527 '<(repack_path)', | 1529 '<(repack_path)', |
| 1528 '<@(pak_inputs)', | 1530 '<@(pak_inputs)', |
| 1529 ], | 1531 ], |
| 1530 'outputs': [ | 1532 'outputs': [ |
| 1531 '<(PRODUCT_DIR)/resources.pak', | 1533 '<(PRODUCT_DIR)/resources.pak', |
| 1532 ], | 1534 ], |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1909 }], # targets | 1911 }], # targets |
| 1910 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1912 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1911 ], # 'conditions' | 1913 ], # 'conditions' |
| 1912 } | 1914 } |
| 1913 | 1915 |
| 1914 # Local Variables: | 1916 # Local Variables: |
| 1915 # tab-width:2 | 1917 # tab-width:2 |
| 1916 # indent-tabs-mode:nil | 1918 # indent-tabs-mode:nil |
| 1917 # End: | 1919 # End: |
| 1918 # vim: set expandtab tabstop=2 shiftwidth=2: | 1920 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |