| 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 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 '<@(_outputs)'], | 1552 '<@(_outputs)'], |
| 1553 'message': 'Dumping breakpad symbols to <(_outputs)', | 1553 'message': 'Dumping breakpad symbols to <(_outputs)', |
| 1554 'process_outputs_as_sources': 1, | 1554 'process_outputs_as_sources': 1, |
| 1555 }, | 1555 }, |
| 1556 ], | 1556 ], |
| 1557 'dependencies': [ | 1557 'dependencies': [ |
| 1558 'chrome', | 1558 'chrome', |
| 1559 '../breakpad/breakpad.gyp:dump_syms', | 1559 '../breakpad/breakpad.gyp:dump_syms', |
| 1560 ], | 1560 ], |
| 1561 }], | 1561 }], |
| 1562 ['linux_strip_reliability_tests==1', { |
| 1563 'actions': [ |
| 1564 { |
| 1565 'action_name': 'strip_reliability_tests', |
| 1566 'inputs': [ |
| 1567 '<(PRODUCT_DIR)/automated_ui_tests', |
| 1568 '<(PRODUCT_DIR)/reliability_tests', |
| 1569 '<(PRODUCT_DIR)/lib.target/_pyautolib.so', |
| 1570 ], |
| 1571 'outputs': [ |
| 1572 '<(PRODUCT_DIR)/strip_reliability_tests.stamp', |
| 1573 ], |
| 1574 'action': ['strip', |
| 1575 '-g', |
| 1576 '<@(_inputs)'], |
| 1577 'message': 'Stripping reliability tests', |
| 1578 }, |
| 1579 ], |
| 1580 'dependencies': [ |
| 1581 'automated_ui_tests', |
| 1582 'reliability_tests', |
| 1583 ], |
| 1584 }], |
| 1562 ], | 1585 ], |
| 1563 } | 1586 } |
| 1564 ], | 1587 ], |
| 1565 },], # OS=="linux" | 1588 },], # OS=="linux" |
| 1566 ['OS=="win"', | 1589 ['OS=="win"', |
| 1567 { 'targets': [ | 1590 { 'targets': [ |
| 1568 { | 1591 { |
| 1569 # TODO(sgk): remove this when we change the buildbots to | 1592 # TODO(sgk): remove this when we change the buildbots to |
| 1570 # use the generated build\all.sln file to build the world. | 1593 # use the generated build\all.sln file to build the world. |
| 1571 'target_name': 'pull_in_all', | 1594 'target_name': 'pull_in_all', |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1973 }], # targets | 1996 }], # targets |
| 1974 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1997 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1975 ], # 'conditions' | 1998 ], # 'conditions' |
| 1976 } | 1999 } |
| 1977 | 2000 |
| 1978 # Local Variables: | 2001 # Local Variables: |
| 1979 # tab-width:2 | 2002 # tab-width:2 |
| 1980 # indent-tabs-mode:nil | 2003 # indent-tabs-mode:nil |
| 1981 # End: | 2004 # End: |
| 1982 # vim: set expandtab tabstop=2 shiftwidth=2: | 2005 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |