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 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1561 { | 1561 { |
1562 'target_name': 'linux_symbols', | 1562 'target_name': 'linux_symbols', |
1563 'type': 'none', | 1563 'type': 'none', |
1564 'conditions': [ | 1564 'conditions': [ |
1565 ['linux_dump_symbols==1', { | 1565 ['linux_dump_symbols==1', { |
1566 'actions': [ | 1566 'actions': [ |
1567 { | 1567 { |
1568 'action_name': 'dump_symbols', | 1568 'action_name': 'dump_symbols', |
1569 'inputs': [ | 1569 'inputs': [ |
1570 '<(DEPTH)/build/linux/dump_app_syms', | 1570 '<(DEPTH)/build/linux/dump_app_syms', |
1571 '<(DEPTH)/build/linux/dump_signature.py', | |
1572 '<(PRODUCT_DIR)/dump_syms', | 1571 '<(PRODUCT_DIR)/dump_syms', |
1573 '<(PRODUCT_DIR)/chrome', | 1572 '<(PRODUCT_DIR)/chrome', |
1574 ], | 1573 ], |
1575 'outputs': [ | 1574 'outputs': [ |
1576 '<(PRODUCT_DIR)/chrome.breakpad.<(target_arch)', | 1575 '<(PRODUCT_DIR)/chrome.breakpad.<(target_arch)', |
1577 ], | 1576 ], |
1578 'action': ['<(DEPTH)/build/linux/dump_app_syms', | 1577 'action': ['<(DEPTH)/build/linux/dump_app_syms', |
1579 '<(PRODUCT_DIR)/dump_syms', | 1578 '<(PRODUCT_DIR)/dump_syms', |
1580 '<(linux_strip_binary)', | 1579 '<(linux_strip_binary)', |
1581 '<(PRODUCT_DIR)/chrome', | 1580 '<(PRODUCT_DIR)/chrome', |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1927 }], # targets | 1926 }], # targets |
1928 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1927 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1929 ], # 'conditions' | 1928 ], # 'conditions' |
1930 } | 1929 } |
1931 | 1930 |
1932 # Local Variables: | 1931 # Local Variables: |
1933 # tab-width:2 | 1932 # tab-width:2 |
1934 # indent-tabs-mode:nil | 1933 # indent-tabs-mode:nil |
1935 # End: | 1934 # End: |
1936 # vim: set expandtab tabstop=2 shiftwidth=2: | 1935 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |