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

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

Issue 197883008: Fix a dependency cycle when building Chrome with use_instrumented_libraries=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # Default value for all libraries. 6 # Default value for all libraries.
7 'custom_configure_flags': '', 7 'custom_configure_flags': '',
8 'custom_c_compiler_flags': '', 8 'custom_c_compiler_flags': '',
9 'custom_cxx_compiler_flags': '', 9 'custom_cxx_compiler_flags': '',
10 'custom_linker_flags': '', 10 'custom_linker_flags': '',
(...skipping 24 matching lines...) Expand all
35 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang', 35 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang',
36 'cxx': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang++', 36 'cxx': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang++',
37 }], 37 }],
38 ], 38 ],
39 'targets': [ 39 'targets': [
40 { 40 {
41 'target_name': 'instrumented_libraries', 41 'target_name': 'instrumented_libraries',
42 'type': 'none', 42 'type': 'none',
43 'variables': { 43 'variables': {
44 'prune_self_dependency': 1, 44 'prune_self_dependency': 1,
45 # Don't add this target to the dependencies of targets with type=none.
46 'link_dependency': 1,
45 }, 47 },
46 'dependencies': [ 48 'dependencies': [
47 '<(_sanitizer_type)-libcairo2', 49 '<(_sanitizer_type)-libcairo2',
48 '<(_sanitizer_type)-libexpat1', 50 '<(_sanitizer_type)-libexpat1',
49 '<(_sanitizer_type)-libffi6', 51 '<(_sanitizer_type)-libffi6',
50 '<(_sanitizer_type)-libgcrypt11', 52 '<(_sanitizer_type)-libgcrypt11',
51 '<(_sanitizer_type)-libgpg-error0', 53 '<(_sanitizer_type)-libgpg-error0',
52 '<(_sanitizer_type)-libnspr4', 54 '<(_sanitizer_type)-libnspr4',
53 '<(_sanitizer_type)-libp11-kit0', 55 '<(_sanitizer_type)-libp11-kit0',
54 '<(_sanitizer_type)-libpcre3', 56 '<(_sanitizer_type)-libpcre3',
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ], 360 ],
359 'includes': ['standard_instrumented_library_target.gypi'], 361 'includes': ['standard_instrumented_library_target.gypi'],
360 }, 362 },
361 { 363 {
362 'library_name': 'libtasn1-3', 364 'library_name': 'libtasn1-3',
363 'dependencies=': [], 365 'dependencies=': [],
364 'includes': ['standard_instrumented_library_target.gypi'], 366 'includes': ['standard_instrumented_library_target.gypi'],
365 }, 367 },
366 ], 368 ],
367 } 369 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698