| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |