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 # 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 '<(_sanitizer_type)-libglib2.0-0', | 62 '<(_sanitizer_type)-libglib2.0-0', |
63 '<(_sanitizer_type)-libdbus-1-3', | 63 '<(_sanitizer_type)-libdbus-1-3', |
64 '<(_sanitizer_type)-libdbus-glib-1-2', | 64 '<(_sanitizer_type)-libdbus-glib-1-2', |
65 '<(_sanitizer_type)-nss', | 65 '<(_sanitizer_type)-nss', |
66 '<(_sanitizer_type)-libfontconfig1', | 66 '<(_sanitizer_type)-libfontconfig1', |
67 '<(_sanitizer_type)-pulseaudio', | 67 '<(_sanitizer_type)-pulseaudio', |
68 '<(_sanitizer_type)-libasound2', | 68 '<(_sanitizer_type)-libasound2', |
69 '<(_sanitizer_type)-libcups2', | 69 '<(_sanitizer_type)-libcups2', |
70 '<(_sanitizer_type)-pango1.0', | 70 '<(_sanitizer_type)-pango1.0', |
71 '<(_sanitizer_type)-libcap2', | 71 '<(_sanitizer_type)-libcap2', |
| 72 '<(_sanitizer_type)-libudev0', |
72 ], | 73 ], |
73 'conditions': [ | 74 'conditions': [ |
74 ['asan==1', { | 75 ['asan==1', { |
75 'dependencies': [ | 76 'dependencies': [ |
76 '<(_sanitizer_type)-libpixman-1-0', | 77 '<(_sanitizer_type)-libpixman-1-0', |
77 ], | 78 ], |
78 }], | 79 }], |
79 ], | 80 ], |
80 'actions': [ | 81 'actions': [ |
81 { | 82 { |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 '--enable-introspection=no', | 329 '--enable-introspection=no', |
329 # More flags are set in download_build_install.py. | 330 # More flags are set in download_build_install.py. |
330 ], | 331 ], |
331 'includes': ['standard_instrumented_library_target.gypi'], | 332 'includes': ['standard_instrumented_library_target.gypi'], |
332 }, | 333 }, |
333 { | 334 { |
334 'library_name': 'libcap2', | 335 'library_name': 'libcap2', |
335 'dependencies=': [], | 336 'dependencies=': [], |
336 'includes': ['standard_instrumented_library_target.gypi'], | 337 'includes': ['standard_instrumented_library_target.gypi'], |
337 }, | 338 }, |
| 339 { |
| 340 'library_name': 'libudev0', |
| 341 'dependencies=': [], |
| 342 'custom_configure_flags': [ |
| 343 # Without this flag there's a linking step that doesn't honor LDFLAGS |
| 344 # and fails. |
| 345 # TODO(earthdok): find a better fix. |
| 346 '--disable-gudev' |
| 347 ], |
| 348 'includes': ['standard_instrumented_library_target.gypi'], |
| 349 }, |
338 ], | 350 ], |
339 } | 351 } |
OLD | NEW |