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 'extra_configure_flags': '', | 7 'extra_configure_flags': '', |
8 'extra_cflags': '', | 8 'extra_cflags': '', |
9 'extra_cxxflags': '', | 9 'extra_cxxflags': '', |
10 'extra_ldflags': '', | 10 'extra_ldflags': '', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 '<(_sanitizer_type)-libcap2', | 85 '<(_sanitizer_type)-libcap2', |
86 '<(_sanitizer_type)-libudev0', | 86 '<(_sanitizer_type)-libudev0', |
87 '<(_sanitizer_type)-libtasn1-3', | 87 '<(_sanitizer_type)-libtasn1-3', |
88 '<(_sanitizer_type)-libgnome-keyring0', | 88 '<(_sanitizer_type)-libgnome-keyring0', |
89 '<(_sanitizer_type)-libgtk2.0-0', | 89 '<(_sanitizer_type)-libgtk2.0-0', |
90 '<(_sanitizer_type)-libgdk-pixbuf2.0-0', | 90 '<(_sanitizer_type)-libgdk-pixbuf2.0-0', |
91 '<(_sanitizer_type)-libpci3', | 91 '<(_sanitizer_type)-libpci3', |
92 '<(_sanitizer_type)-libdbusmenu-glib4', | 92 '<(_sanitizer_type)-libdbusmenu-glib4', |
93 '<(_sanitizer_type)-liboverlay-scrollbar-0.2-0', | 93 '<(_sanitizer_type)-liboverlay-scrollbar-0.2-0', |
94 '<(_sanitizer_type)-libgconf-2-4', | 94 '<(_sanitizer_type)-libgconf-2-4', |
| 95 '<(_sanitizer_type)-libappindicator1', |
| 96 '<(_sanitizer_type)-libdbusmenu', |
| 97 '<(_sanitizer_type)-atk1.0', |
95 ], | 98 ], |
96 'conditions': [ | 99 'conditions': [ |
97 ['asan==1', { | 100 ['asan==1', { |
98 'dependencies': [ | 101 'dependencies': [ |
99 '<(_sanitizer_type)-libpixman-1-0', | 102 '<(_sanitizer_type)-libpixman-1-0', |
100 ], | 103 ], |
101 }], | 104 }], |
102 ['msan==1', { | 105 ['msan==1', { |
103 'dependencies': [ | 106 'dependencies': [ |
104 '<(_sanitizer_type)-libcups2', | 107 '<(_sanitizer_type)-libcups2', |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 'extra_configure_flags': [ | 505 'extra_configure_flags': [ |
503 # From debian/rules. (Even though --with-gtk=3.0 doesn't make sense.) | 506 # From debian/rules. (Even though --with-gtk=3.0 doesn't make sense.) |
504 '--with-gtk=3.0', | 507 '--with-gtk=3.0', |
505 '--disable-orbit', | 508 '--disable-orbit', |
506 # See above. | 509 # See above. |
507 '--disable-introspection', | 510 '--disable-introspection', |
508 ], | 511 ], |
509 'dependencies=': [], | 512 'dependencies=': [], |
510 'includes': ['standard_instrumented_library_target.gypi'], | 513 'includes': ['standard_instrumented_library_target.gypi'], |
511 }, | 514 }, |
| 515 { |
| 516 'library_name': 'libappindicator1', |
| 517 'extra_configure_flags': [ |
| 518 # See above. |
| 519 '--disable-introspection', |
| 520 ], |
| 521 'dependencies=': [], |
| 522 'build_method': 'custom_libappindicator1', |
| 523 'includes': ['standard_instrumented_library_target.gypi'], |
| 524 }, |
| 525 { |
| 526 'library_name': 'libdbusmenu', |
| 527 'extra_configure_flags': [ |
| 528 # From debian/rules. |
| 529 '--disable-scrollkeeper', |
| 530 '--with-gtk=2', |
| 531 # See above. |
| 532 '--disable-introspection', |
| 533 '--disable-vala', |
| 534 ], |
| 535 'dependencies=': [], |
| 536 'includes': ['standard_instrumented_library_target.gypi'], |
| 537 }, |
| 538 { |
| 539 'library_name': 'atk1.0', |
| 540 'extra_configure_flags': [ |
| 541 # See above. |
| 542 '--disable-introspection', |
| 543 ], |
| 544 'dependencies=': [], |
| 545 'includes': ['standard_instrumented_library_target.gypi'], |
| 546 }, |
512 ], | 547 ], |
513 } | 548 } |
OLD | NEW |