| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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     ], | 66     ], | 
| 67     'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], | 67     'grit_info_cmd': ['python', '../tools/grit/grit_info.py', | 
|  | 68                       '<@(grit_defines)'], | 
| 68     'grit_cmd': ['python', '../tools/grit/grit.py'], | 69     'grit_cmd': ['python', '../tools/grit/grit.py'], | 
| 69     'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 70     'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 
| 70     # TODO: remove this helper when we have loops in GYP | 71     # TODO: remove this helper when we have loops in GYP | 
| 71     'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 72     'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 
| 72     'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
      directxsdk)', | 73     'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
      directxsdk)', | 
| 73     'conditions': [ | 74     'conditions': [ | 
| 74       ['OS=="win"', { | 75       ['OS=="win"', { | 
| 75         'nacl_defines': [ | 76         'nacl_defines': [ | 
| 76           'NACL_WINDOWS=1', | 77           'NACL_WINDOWS=1', | 
| 77           'NACL_LINUX=0', | 78           'NACL_LINUX=0', | 
| (...skipping 1815 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1893       }],  # targets | 1894       }],  # targets | 
| 1894     }],  # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1895     }],  # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 
| 1895   ],  # 'conditions' | 1896   ],  # 'conditions' | 
| 1896 } | 1897 } | 
| 1897 | 1898 | 
| 1898 # Local Variables: | 1899 # Local Variables: | 
| 1899 # tab-width:2 | 1900 # tab-width:2 | 
| 1900 # indent-tabs-mode:nil | 1901 # indent-tabs-mode:nil | 
| 1901 # End: | 1902 # End: | 
| 1902 # vim: set expandtab tabstop=2 shiftwidth=2: | 1903 # vim: set expandtab tabstop=2 shiftwidth=2: | 
| OLD | NEW | 
|---|