Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
| 8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
| 9 ], | 9 ], |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 890 { | 890 { |
| 891 'target_name': 'breakpad_unittests_stripped', | 891 'target_name': 'breakpad_unittests_stripped', |
| 892 'type': 'none', | 892 'type': 'none', |
| 893 'dependencies': [ 'breakpad_unittests' ], | 893 'dependencies': [ 'breakpad_unittests' ], |
| 894 'actions': [{ | 894 'actions': [{ |
| 895 'action_name': 'strip breakpad_unittests', | 895 'action_name': 'strip breakpad_unittests', |
| 896 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], | 896 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], |
| 897 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], | 897 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], |
| 898 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ], | 898 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ], |
| 899 }], | 899 }], |
| 900 }, | |
| 901 { | |
| 902 'target_name': 'breakpad_unittests_deps', | |
| 903 'type': 'none', | |
| 904 'dependencies': [ | |
| 905 'breakpad_unittests_stripped', | |
| 906 ], | |
| 907 # For the component build, ensure dependent shared libraries are strip ped | |
| 908 # and put alongside forwarder to simplify pushing to the device. | |
|
cjhopman
2014/10/22 19:21:48
s/forwarder/breakpad
ripp
2014/10/23 06:17:51
Done.
| |
| 909 'variables': { | |
| 910 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/', | |
| 911 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped', | |
| 912 'include_main_binary': 0, | |
| 913 }, | |
| 914 'includes': [ | |
| 915 '../build/android/native_app_dependencies.gypi' | |
| 916 ], | |
| 900 } | 917 } |
| 901 ], | 918 ], |
| 902 }], | 919 }], |
| 903 ], | 920 ], |
| 904 } | 921 } |
| OLD | NEW |