Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: breakpad/breakpad.gyp

Issue 655543005: Added support of shared_library build for tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments formatting in GYPs Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
908 # stripped and put alongside breakpad_unittest to simplify pushing to
909 # the device.
910 'variables': {
911 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/',
912 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped',
913 'include_main_binary': 0,
914 },
915 'includes': [
916 '../build/android/native_app_dependencies.gypi'
917 ],
900 } 918 }
901 ], 919 ],
902 }], 920 }],
903 ], 921 ],
904 } 922 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698