| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 '<(_sanitizer_type)-libxrandr2', | 57 '<(_sanitizer_type)-libxrandr2', |
| 58 '<(_sanitizer_type)-libxrender1', | 58 '<(_sanitizer_type)-libxrender1', |
| 59 '<(_sanitizer_type)-libxss1', | 59 '<(_sanitizer_type)-libxss1', |
| 60 '<(_sanitizer_type)-libxtst6', | 60 '<(_sanitizer_type)-libxtst6', |
| 61 '<(_sanitizer_type)-zlib1g', | 61 '<(_sanitizer_type)-zlib1g', |
| 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', |
| 68 '<(_sanitizer_type)-libasound2', |
| 67 ], | 69 ], |
| 68 'conditions': [ | 70 'conditions': [ |
| 69 ['asan==1', { | 71 ['asan==1', { |
| 70 'dependencies': [ | 72 'dependencies': [ |
| 71 '<(_sanitizer_type)-libpixman-1-0', | 73 '<(_sanitizer_type)-libpixman-1-0', |
| 72 ], | 74 ], |
| 73 }], | 75 }], |
| 74 ], | 76 ], |
| 75 'actions': [ | 77 'actions': [ |
| 76 { | 78 { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 'dependencies=': [], | 279 'dependencies=': [], |
| 278 'includes': ['standard_instrumented_library_target.gypi'], | 280 'includes': ['standard_instrumented_library_target.gypi'], |
| 279 }, | 281 }, |
| 280 { | 282 { |
| 281 'library_name': 'nss', | 283 'library_name': 'nss', |
| 282 'dependencies=': [ | 284 'dependencies=': [ |
| 283 '<(_sanitizer_type)-libnspr4', | 285 '<(_sanitizer_type)-libnspr4', |
| 284 ], | 286 ], |
| 285 'includes': ['standard_instrumented_library_target.gypi'], | 287 'includes': ['standard_instrumented_library_target.gypi'], |
| 286 }, | 288 }, |
| 289 { |
| 290 'library_name': 'pulseaudio', |
| 291 'dependencies=': [], |
| 292 'run_before_build': 'pulseaudio.sh', |
| 293 'custom_configure_flags': '--with-udev-rules-dir=<(INTERMEDIATE_DIR)/udev/
rules.d', |
| 294 'includes': ['standard_instrumented_library_target.gypi'], |
| 295 }, |
| 296 { |
| 297 'library_name': 'libasound2', |
| 298 'dependencies=': [], |
| 299 'run_before_build': 'libasound2.sh', |
| 300 'includes': ['standard_instrumented_library_target.gypi'], |
| 301 }, |
| 287 ], | 302 ], |
| 288 } | 303 } |
| OLD | NEW |