| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/net_internals_resources.grd', | 63 'browser/resources/net_internals_resources.grd', |
| 63 ], | 64 ], |
| 64 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], | 65 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], |
| 65 'grit_cmd': ['python', '../tools/grit/grit.py'], | 66 'grit_cmd': ['python', '../tools/grit/grit.py'], |
| 66 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 67 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 67 # TODO: remove this helper when we have loops in GYP | 68 # TODO: remove this helper when we have loops in GYP |
| 68 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 69 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
| 69 'conditions': [ | 70 'conditions': [ |
| 70 ['OS=="win"', { | 71 ['OS=="win"', { |
| 71 'nacl_defines': [ | 72 'nacl_defines': [ |
| (...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 'repack_path': '../tools/data_pack/repack.py', | 1501 'repack_path': '../tools/data_pack/repack.py', |
| 1501 }, | 1502 }, |
| 1502 'dependencies': [ | 1503 'dependencies': [ |
| 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': [ |
| 1511 '<(grit_out_dir)/bookmark_manager_resources.pak', |
| 1510 '<(grit_out_dir)/net_internals_resources.pak', | 1512 '<(grit_out_dir)/net_internals_resources.pak', |
| 1511 ], | 1513 ], |
| 1512 }, | 1514 }, |
| 1513 'inputs': [ | 1515 'inputs': [ |
| 1514 '<(repack_path)', | 1516 '<(repack_path)', |
| 1515 '<@(pak_inputs)', | 1517 '<@(pak_inputs)', |
| 1516 ], | 1518 ], |
| 1517 'outputs': [ | 1519 'outputs': [ |
| 1518 '<(PRODUCT_DIR)/resources.pak', | 1520 '<(PRODUCT_DIR)/resources.pak', |
| 1519 ], | 1521 ], |
| (...skipping 389 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 |