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

Side by Side Diff: breakpad/breakpad.gyp

Issue 1376883002: Isolate breakpad_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 'variables': { 976 'variables': {
977 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/', 977 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/',
978 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped', 978 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped',
979 'include_main_binary': 0, 979 'include_main_binary': 0,
980 }, 980 },
981 'includes': [ 981 'includes': [
982 '../build/android/native_app_dependencies.gypi' 982 '../build/android/native_app_dependencies.gypi'
983 ], 983 ],
984 } 984 }
985 ], 985 ],
986 'conditions': [
987 ['test_isolation_mode != "noop"',
988 {
989 'targets': [
990 {
991 'target_name': 'breakpad_unittests_apk_run',
jbudorick 2015/09/29 18:00:11 breakpad_unittests aren't packaged as an APK, so t
ghost stip (do not use) 2015/09/29 20:53:00 then I'd have to change breakpad_unittests_apk.iso
992 'type': 'none',
993 'dependencies': [
994 'breakpad_unittests',
995 ],
996 'includes': [
997 '../build/isolate.gypi',
998 ],
999 'sources': [
1000 'breakpad_unittests_apk.isolate',
1001 ],
1002 },
1003 ]
1004 }
1005 ],
1006 ],
986 }], 1007 }],
987 ], 1008 ],
988 } 1009 }
OLDNEW
« no previous file with comments | « no previous file | breakpad/breakpad_unittests_apk.isolate » ('j') | breakpad/breakpad_unittests_apk.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698