OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 '..', | 281 '..', |
282 ], | 282 ], |
283 # These warnings are needed for the files in third_party\dmg_fp. | 283 # These warnings are needed for the files in third_party\dmg_fp. |
284 'msvs_disabled_warnings': [ | 284 'msvs_disabled_warnings': [ |
285 4244, 4554, 4018, 4102, | 285 4244, 4554, 4018, 4102, |
286 ], | 286 ], |
287 'mac_framework_dirs': [ | 287 'mac_framework_dirs': [ |
288 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr
ameworks', | 288 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr
ameworks', |
289 ], | 289 ], |
290 'conditions': [ | 290 'conditions': [ |
291 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd"', { | 291 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "so
laris"', { |
292 'sources/': [ | 292 'sources/': [ |
293 ['exclude', '/xdg_user_dirs/'], | 293 ['exclude', '/xdg_user_dirs/'], |
294 ['exclude', '_nss\.cc$'], | 294 ['exclude', '_nss\.cc$'], |
295 ], | 295 ], |
296 'sources!': [ | 296 'sources!': [ |
297 'atomicops_internals_x86_gcc.cc', | 297 'atomicops_internals_x86_gcc.cc', |
298 'base_paths_posix.cc', | 298 'base_paths_posix.cc', |
299 'linux_util.cc', | 299 'linux_util.cc', |
300 'message_pump_glib.cc', | 300 'message_pump_glib.cc', |
301 ], | 301 ], |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 'i18n/icu_util_nacl_win64.cc', | 581 'i18n/icu_util_nacl_win64.cc', |
582 ], | 582 ], |
583 'configurations': { | 583 'configurations': { |
584 'Common_Base': { | 584 'Common_Base': { |
585 'msvs_target_platform': 'x64', | 585 'msvs_target_platform': 'x64', |
586 }, | 586 }, |
587 }, | 587 }, |
588 }, | 588 }, |
589 ], | 589 ], |
590 }], | 590 }], |
591 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 591 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"',
{ |
592 'targets': [ | 592 'targets': [ |
593 { | 593 { |
594 'target_name': 'symbolize', | 594 'target_name': 'symbolize', |
595 'type': '<(library)', | 595 'type': '<(library)', |
596 'variables': { | 596 'variables': { |
597 'chromium_code': 0, | 597 'chromium_code': 0, |
598 }, | 598 }, |
| 599 'conditions': [ |
| 600 [ 'OS == "solaris"', { |
| 601 'include_dirs': [ |
| 602 '/usr/gnu/include', |
| 603 '/usr/gnu/include/libelf', |
| 604 ], |
| 605 },], |
| 606 ], |
599 'cflags': [ | 607 'cflags': [ |
600 '-Wno-sign-compare', | 608 '-Wno-sign-compare', |
601 ], | 609 ], |
602 'cflags!': [ | 610 'cflags!': [ |
603 '-Wextra', | 611 '-Wextra', |
604 ], | 612 ], |
605 'sources': [ | 613 'sources': [ |
606 'third_party/symbolize/symbolize.cc', | 614 'third_party/symbolize/symbolize.cc', |
607 'third_party/symbolize/demangle.cc', | 615 'third_party/symbolize/demangle.cc', |
608 ], | 616 ], |
(...skipping 23 matching lines...) Expand all Loading... |
632 'third_party/xdg_mime/xdgmimemagic.c', | 640 'third_party/xdg_mime/xdgmimemagic.c', |
633 'third_party/xdg_mime/xdgmimemagic.h', | 641 'third_party/xdg_mime/xdgmimemagic.h', |
634 'third_party/xdg_mime/xdgmimeparent.c', | 642 'third_party/xdg_mime/xdgmimeparent.c', |
635 'third_party/xdg_mime/xdgmimeparent.h', | 643 'third_party/xdg_mime/xdgmimeparent.h', |
636 ], | 644 ], |
637 }, | 645 }, |
638 ], | 646 ], |
639 }], | 647 }], |
640 ], | 648 ], |
641 } | 649 } |
OLD | NEW |