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

Side by Side Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 1028383003: Instrumented libraries: add pre-built libs for msan-no-origins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'verbose_libraries_build%': 0, 7 'verbose_libraries_build%': 0,
8 'instrumented_libraries_jobs%': 1, 8 'instrumented_libraries_jobs%': 1,
9 }, 9 },
10 10
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'variables': { 87 'variables': {
88 'prune_self_dependency': 1, 88 'prune_self_dependency': 1,
89 # Don't add this target to the dependencies of targets with type=none. 89 # Don't add this target to the dependencies of targets with type=none.
90 'link_dependency': 1, 90 'link_dependency': 1,
91 'conditions': [ 91 'conditions': [
92 ['msan==1', { 92 ['msan==1', {
93 'conditions': [ 93 'conditions': [
94 ['msan_track_origins==2', { 94 ['msan_track_origins==2', {
95 'archive_name': 'msan-chained-origins-<(_ubuntu_release)', 95 'archive_name': 'msan-chained-origins-<(_ubuntu_release)',
96 }, { 96 }, {
97 'archive_name': 'UNSUPPORTED_CONFIGURATION' 97 'conditions': [
98 }], 98 ['msan_track_origins==0', {
99 'archive_name': 'msan-no-origins-<(_ubuntu_release)',
100 }, {
101 'archive_name': 'UNSUPPORTED_CONFIGURATION'
102 }],
103 ]}],
99 ]}, { 104 ]}, {
100 'archive_name': 'UNSUPPORTED_CONFIGURATION' 105 'archive_name': 'UNSUPPORTED_CONFIGURATION'
101 }], 106 }],
102 ], 107 ],
103 }, 108 },
104 'actions': [ 109 'actions': [
105 { 110 {
106 'action_name': 'unpack_<(archive_name).tgz', 111 'action_name': 'unpack_<(archive_name).tgz',
107 'inputs': [ 112 'inputs': [
108 'binaries/<(archive_name).tgz', 113 'binaries/<(archive_name).tgz',
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 'extra_configure_flags': [ 853 'extra_configure_flags': [
849 '--disable-static', 854 '--disable-static',
850 # See above. 855 # See above.
851 '--disable-introspection', 856 '--disable-introspection',
852 ], 857 ],
853 'pre_build': 'scripts/pre-build/autoreconf.sh', 858 'pre_build': 'scripts/pre-build/autoreconf.sh',
854 'includes': ['standard_instrumented_package_target.gypi'], 859 'includes': ['standard_instrumented_package_target.gypi'],
855 }, 860 },
856 ], 861 ],
857 } 862 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698