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

Unified Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 113443003: Disable library dependencies check by default (instrumented libs). (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/instrumented_libraries/download_build_install.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/instrumented_libraries/instrumented_libraries.gyp
===================================================================
--- third_party/instrumented_libraries/instrumented_libraries.gyp (revision 241259)
+++ third_party/instrumented_libraries/instrumented_libraries.gyp (working copy)
@@ -105,17 +105,22 @@
{
'library_name': 'libfontconfig1',
'dependencies=': [],
+ 'custom_configure_flags': '--disable-docs',
'includes': ['standard_instrumented_library_target.gypi'],
},
{
'library_name': 'libcairo2',
'dependencies=': [],
+ 'custom_configure_flags': '--disable-gtk-doc',
'includes': ['standard_instrumented_library_target.gypi'],
},
{
'library_name': 'libpcre3',
'dependencies=': [],
- 'custom_configure_flags': '--enable-utf8 --enable-unicode-properties',
+ 'custom_configure_flags': [
+ '--enable-utf8',
+ '--enable-unicode-properties',
+ ],
'includes': ['standard_instrumented_library_target.gypi'],
},
{
@@ -126,6 +131,11 @@
{
'library_name': 'libglib2.0-0',
'dependencies=': [],
+ 'custom_configure_flags': [
+ '--disable-gtk-doc',
+ '--disable-gtk-doc-html',
+ '--disable-gtk-doc-pdf',
+ ],
'includes': ['standard_instrumented_library_target.gypi'],
},
{
@@ -143,6 +153,7 @@
{
'library_name': 'libxcb1',
'dependencies=': [],
+ 'custom_configure_flags': '--disable-build-docs',
'includes': ['standard_instrumented_library_target.gypi'],
},
{
@@ -154,7 +165,10 @@
{
'library_name': 'libxi6',
'dependencies=': [],
- 'custom_configure_flags': '--disable-specs --disable-docs',
+ 'custom_configure_flags': [
+ '--disable-specs',
+ '--disable-docs',
+ ],
'includes': ['standard_instrumented_library_target.gypi'],
},
{
« no previous file with comments | « third_party/instrumented_libraries/download_build_install.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698