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

Side by Side Diff: breakpad/breakpad.gyp

Issue 1854233002: Reland 2 of GN: Make breakpad_unittests & sandbox_linux_unittests use test() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-minor-renames
Patch Set: Fix PIE errors, fix component mode. Created 4 years, 8 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 | « breakpad/BUILD.gn ('k') | build/android/native_app_dependencies.gypi » ('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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 'action_name': 'strip breakpad_unittests', 984 'action_name': 'strip breakpad_unittests',
985 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], 985 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ],
986 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], 986 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ],
987 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ], 987 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
988 }], 988 }],
989 }, 989 },
990 { 990 {
991 'target_name': 'breakpad_unittests_deps', 991 'target_name': 'breakpad_unittests_deps',
992 'type': 'none', 992 'type': 'none',
993 'dependencies': [ 993 'dependencies': [
994 'breakpad_unittests_stripped', 994 'breakpad_unittests',
995 'linux_dumper_unittest_helper',
995 ], 996 ],
996 # For the component build, ensure dependent shared libraries are
997 # stripped and put alongside breakpad_unittest to simplify pushing to
998 # the device.
999 'variables': { 997 'variables': {
1000 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/', 998 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests__dist/',
1001 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped', 999 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests',
1002 'include_main_binary': 0, 1000 'include_main_binary': 1,
1001 'extra_files': ['<(PRODUCT_DIR)/linux_dumper_unittest_helper'],
1003 }, 1002 },
1004 'includes': [ 1003 'includes': [
1005 '../build/android/native_app_dependencies.gypi' 1004 '../build/android/native_app_dependencies.gypi'
1006 ], 1005 ],
1007 } 1006 }
1008 ], 1007 ],
1009 'conditions': [ 1008 'conditions': [
1010 ['test_isolation_mode != "noop"', 1009 ['test_isolation_mode != "noop"',
1011 { 1010 {
1012 'targets': [ 1011 'targets': [
(...skipping 10 matching lines...) Expand all
1023 'breakpad_unittests_apk.isolate', 1022 'breakpad_unittests_apk.isolate',
1024 ], 1023 ],
1025 }, 1024 },
1026 ] 1025 ]
1027 } 1026 }
1028 ], 1027 ],
1029 ], 1028 ],
1030 }], 1029 }],
1031 ], 1030 ],
1032 } 1031 }
OLDNEW
« no previous file with comments | « breakpad/BUILD.gn ('k') | build/android/native_app_dependencies.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698