Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: skia/skia.gyp

Issue 606075: Second set adding in Solaris as an OS option (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/ext/platform_device.h ('k') | third_party/libevent/libevent.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': 'CD9CA56E-4E94-444C-87D4-58CA1E6F300D', 10 'msvs_guid': 'CD9CA56E-4E94-444C-87D4-58CA1E6F300D',
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 ], 557 ],
558 'sources!': [ 558 'sources!': [
559 '../third_party/skia/include/core/SkTypes.h', 559 '../third_party/skia/include/core/SkTypes.h',
560 ], 560 ],
561 'conditions': [ 561 'conditions': [
562 [ 'OS != "mac"', { 562 [ 'OS != "mac"', {
563 'sources/': [ 563 'sources/': [
564 ['exclude', '_mac\\.(cc|cpp|mm?)$'], 564 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
565 ['exclude', '/mac/'] ], 565 ['exclude', '/mac/'] ],
566 }], 566 }],
567 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd"', { 567 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "sola ris"', {
568 'sources/': [ ['exclude', '_(linux|gtk)\\.(cc|cpp)$'] ], 568 'sources/': [ ['exclude', '_(linux|gtk)\\.(cc|cpp)$'] ],
569 'sources!': [ 569 'sources!': [
570 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', 570 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp',
571 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp', 571 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp',
572 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', 572 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp',
573 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', 573 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp',
574 '../third_party/skia/src/ports/SkFontHost_tables.cpp', 574 '../third_party/skia/src/ports/SkFontHost_tables.cpp',
575 ], 575 ],
576 }], 576 }],
577 [ 'OS != "win"', { 577 [ 'OS != "win"', {
578 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], 578 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
579 }], 579 }],
580 [ 'armv7 == 1', { 580 [ 'armv7 == 1', {
581 'defines': [ 581 'defines': [
582 '__ARM_HAVE_NEON', 582 '__ARM_HAVE_NEON',
583 '__ARM_ARCH__=7', 583 '__ARM_ARCH__=7',
584 ], 584 ],
585 }], 585 }],
586 [ 'target_arch == "arm"', { 586 [ 'target_arch == "arm"', {
587 'sources!': [ 587 'sources!': [
588 '../third_party/skia/src/opts/opts_check_SSE2.cpp' 588 '../third_party/skia/src/opts/opts_check_SSE2.cpp'
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 'dependencies': [ 592 'dependencies': [
593 '../build/linux/system.gyp:gdk', 593 '../build/linux/system.gyp:gdk',
594 '../build/linux/system.gyp:fontconfig', 594 '../build/linux/system.gyp:fontconfig',
595 '../build/linux/system.gyp:freetype2', 595 '../build/linux/system.gyp:freetype2',
596 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', 596 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz',
597 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', 597 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface',
598 ], 598 ],
599 'cflags': [ 599 'cflags': [
600 '-Wno-unused', 600 '-Wno-unused',
601 '-Wno-unused-function', 601 '-Wno-unused-function',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 ], 725 ],
726 }, 726 },
727 ], 727 ],
728 } 728 }
729 729
730 # Local Variables: 730 # Local Variables:
731 # tab-width:2 731 # tab-width:2
732 # indent-tabs-mode:nil 732 # indent-tabs-mode:nil
733 # End: 733 # End:
734 # vim: set expandtab tabstop=2 shiftwidth=2: 734 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « skia/ext/platform_device.h ('k') | third_party/libevent/libevent.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698