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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 44 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
45 'chrome_strings_grds': [ | 45 'chrome_strings_grds': [ |
46 # Localizable resources. | 46 # Localizable resources. |
47 'app/resources/locale_settings.grd', | 47 'app/resources/locale_settings.grd', |
48 'app/chromium_strings.grd', | 48 'app/chromium_strings.grd', |
49 'app/generated_resources.grd', | 49 'app/generated_resources.grd', |
50 'app/google_chrome_strings.grd', | 50 'app/google_chrome_strings.grd', |
51 ], | 51 ], |
52 'chrome_resources_grds': [ | 52 'chrome_resources_grds': [ |
53 # Data resources. | 53 # Data resources. |
| 54 'browser/autofill/autofill_resources.grd', |
54 'browser/browser_resources.grd', | 55 'browser/browser_resources.grd', |
55 'common/common_resources.grd', | 56 'common/common_resources.grd', |
56 'renderer/renderer_resources.grd', | 57 'renderer/renderer_resources.grd', |
57 ], | 58 ], |
58 'chrome_extra_resources_grds': [ | 59 'chrome_extra_resources_grds': [ |
59 # These resources end up in resources.pak because they are resources | 60 # These resources end up in resources.pak because they are resources |
60 # 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 |
61 # it easier for us to reference them internally. | 62 # it easier for us to reference them internally. |
62 'browser/resources/bookmark_manager_resources.grd', | 63 'browser/resources/bookmark_manager_resources.grd', |
63 'browser/resources/net_internals_resources.grd', | 64 'browser/resources/net_internals_resources.grd', |
(...skipping 1787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1851 # TODO(mark): These actions are duplicated for the Mac in the | 1852 # TODO(mark): These actions are duplicated for the Mac in the |
1852 # chrome_dll target. Can they be unified? | 1853 # chrome_dll target. Can they be unified? |
1853 # | 1854 # |
1854 # Mac needs 'process_outputs_as_mac_bundle_resources' to be set, | 1855 # Mac needs 'process_outputs_as_mac_bundle_resources' to be set, |
1855 # and the option is only effective when the target type is native | 1856 # and the option is only effective when the target type is native |
1856 # binary. Hence we cannot build the Mac bundle resources here. | 1857 # binary. Hence we cannot build the Mac bundle resources here. |
1857 { | 1858 { |
1858 'action_name': 'repack_chrome', | 1859 'action_name': 'repack_chrome', |
1859 'variables': { | 1860 'variables': { |
1860 'pak_inputs': [ | 1861 'pak_inputs': [ |
| 1862 '<(grit_out_dir)/autofill_resources.pak', |
1861 '<(grit_out_dir)/browser_resources.pak', | 1863 '<(grit_out_dir)/browser_resources.pak', |
1862 '<(grit_out_dir)/common_resources.pak', | 1864 '<(grit_out_dir)/common_resources.pak', |
1863 '<(grit_out_dir)/default_plugin_resources/default_plugin_resourc
es.pak', | 1865 '<(grit_out_dir)/default_plugin_resources/default_plugin_resourc
es.pak', |
1864 '<(grit_out_dir)/renderer_resources.pak', | 1866 '<(grit_out_dir)/renderer_resources.pak', |
1865 '<(grit_out_dir)/theme_resources.pak', | 1867 '<(grit_out_dir)/theme_resources.pak', |
1866 '<(SHARED_INTERMEDIATE_DIR)/app/app_resources/app_resources.pak'
, | 1868 '<(SHARED_INTERMEDIATE_DIR)/app/app_resources/app_resources.pak'
, |
1867 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 1869 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
1868 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak
', | 1870 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak
', |
1869 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', | 1871 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak', |
1870 ], | 1872 ], |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1930 }], # targets | 1932 }], # targets |
1931 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1933 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1932 ], # 'conditions' | 1934 ], # 'conditions' |
1933 } | 1935 } |
1934 | 1936 |
1935 # Local Variables: | 1937 # Local Variables: |
1936 # tab-width:2 | 1938 # tab-width:2 |
1937 # indent-tabs-mode:nil | 1939 # indent-tabs-mode:nil |
1938 # End: | 1940 # End: |
1939 # vim: set expandtab tabstop=2 shiftwidth=2: | 1941 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |