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

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

Issue 704073004: Instrumented libraries: fix udev build on Trusty. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing file Created 6 years, 1 month 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 | « no previous file | third_party/instrumented_libraries/scripts/udev.sh » ('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 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 }, 496 },
497 { 497 {
498 'package_name': 'udev', 498 'package_name': 'udev',
499 'dependencies=': [], 499 'dependencies=': [],
500 'extra_configure_flags': [ 500 'extra_configure_flags': [
501 # Without this flag there's a linking step that doesn't honor LDFLAGS 501 # Without this flag there's a linking step that doesn't honor LDFLAGS
502 # and fails. 502 # and fails.
503 # TODO(earthdok): find a better fix. 503 # TODO(earthdok): find a better fix.
504 '--disable-gudev' 504 '--disable-gudev'
505 ], 505 ],
506 # Required on Trusty due to autoconf version mismatch. 506 'run_before_build': 'scripts/udev.sh',
507 'run_before_build': 'scripts/autoreconf.sh',
508 'includes': ['standard_instrumented_package_target.gypi'], 507 'includes': ['standard_instrumented_package_target.gypi'],
509 }, 508 },
510 { 509 {
511 'package_name': 'libtasn1-3', 510 'package_name': 'libtasn1-3',
512 'dependencies=': [], 511 'dependencies=': [],
513 'extra_configure_flags': [ 512 'extra_configure_flags': [
514 # From debian/rules. 513 # From debian/rules.
515 '--enable-ld-version-script', 514 '--enable-ld-version-script',
516 ], 515 ],
517 'includes': ['standard_instrumented_package_target.gypi'], 516 'includes': ['standard_instrumented_package_target.gypi'],
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 'extra_configure_flags': [ 661 'extra_configure_flags': [
663 # See above. 662 # See above.
664 '--disable-introspection', 663 '--disable-introspection',
665 ], 664 ],
666 'dependencies=': [], 665 'dependencies=': [],
667 'run_before_build': 'scripts/autogen.sh', 666 'run_before_build': 'scripts/autogen.sh',
668 'includes': ['standard_instrumented_package_target.gypi'], 667 'includes': ['standard_instrumented_package_target.gypi'],
669 }, 668 },
670 ], 669 ],
671 } 670 }
OLDNEW
« no previous file with comments | « no previous file | third_party/instrumented_libraries/scripts/udev.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698