| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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': '<(DEPTH)/build/util/version.py', | 9 'version_py_path': '<(DEPTH)/build/util/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 }, | 61 }, |
| 62 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)', | 64 '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 'inputs': [ | 67 'inputs': [ |
| 68 '<(version_path)', | 68 '<(version_path)', |
| 69 '<(branding_path)', | 69 '<(branding_path)', |
| 70 '<(lastchange_path)', | 70 '<(lastchange_path)', |
| 71 '<(DEPTH)/chrome/common/chrome_version.h.in', | 71 '<(DEPTH)/chrome/version.h.in', |
| 72 'BRANDING', | 72 'BRANDING', |
| 73 ], | 73 ], |
| 74 'outputs': [ | 74 'outputs': [ |
| 75 '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)/version.h', | 75 '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)/version.h', |
| 76 ], | 76 ], |
| 77 'action': [ | 77 'action': [ |
| 78 'python', | 78 'python', |
| 79 '<(version_py_path)', | 79 '<(version_py_path)', |
| 80 '-f', '<(version_path)', | 80 '-f', '<(version_path)', |
| 81 '-f', '<(branding_path)', | 81 '-f', '<(branding_path)', |
| 82 '-f', '<(lastchange_path)', | 82 '-f', '<(lastchange_path)', |
| 83 '-f', 'BRANDING', | 83 '-f', 'BRANDING', |
| 84 '<(DEPTH)/chrome/common/chrome_version.h.in', | 84 '<(DEPTH)/chrome/version.h.in', |
| 85 '<@(_outputs)', | 85 '<@(_outputs)', |
| 86 ], | 86 ], |
| 87 'message': 'Generating version header file: <@(_outputs)', | 87 'message': 'Generating version header file: <@(_outputs)', |
| 88 }, | 88 }, |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 ], | 91 ], |
| 92 } | 92 } |
| OLD | NEW |