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

Side by Side Diff: skia/skia.gyp

Issue 565043: OpenBSD/FreeBSD GYP changes (most of the remaining ones) (Closed) Base URL: svn://chrome-svn/chrome/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
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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 ], 559 ],
560 'sources!': [ 560 'sources!': [
561 '../third_party/skia/include/core/SkTypes.h', 561 '../third_party/skia/include/core/SkTypes.h',
562 ], 562 ],
563 'conditions': [ 563 'conditions': [
564 [ 'OS != "mac"', { 564 [ 'OS != "mac"', {
565 'sources/': [ 565 'sources/': [
566 ['exclude', '_mac\\.(cc|cpp|mm?)$'], 566 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
567 ['exclude', '/mac/'] ], 567 ['exclude', '/mac/'] ],
568 }], 568 }],
569 [ 'OS != "linux"', { 569 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd"', {
570 'sources/': [ ['exclude', '_(linux|gtk)\\.(cc|cpp)$'] ], 570 'sources/': [ ['exclude', '_(linux|gtk)\\.(cc|cpp)$'] ],
571 'sources!': [ 571 'sources!': [
572 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', 572 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp',
573 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp', 573 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp',
574 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', 574 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp',
575 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', 575 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp',
576 '../third_party/skia/src/ports/SkFontHost_tables.cpp', 576 '../third_party/skia/src/ports/SkFontHost_tables.cpp',
577 ], 577 ],
578 }], 578 }],
579 [ 'OS != "win"', { 579 [ 'OS != "win"', {
580 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], 580 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
581 }], 581 }],
582 [ 'armv7 == 1', { 582 [ 'armv7 == 1', {
583 'defines': [ 583 'defines': [
584 '__ARM_HAVE_NEON', 584 '__ARM_HAVE_NEON',
585 '__ARM_ARCH__=7', 585 '__ARM_ARCH__=7',
586 ], 586 ],
587 }], 587 }],
588 [ 'target_arch == "arm"', { 588 [ 'target_arch == "arm"', {
589 'sources!': [ 589 'sources!': [
590 '../third_party/skia/src/opts/opts_check_SSE2.cpp' 590 '../third_party/skia/src/opts/opts_check_SSE2.cpp'
591 ], 591 ],
592 }], 592 }],
593 [ 'OS == "linux" or OS == "freebsd"', { 593 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
594 'dependencies': [ 594 'dependencies': [
595 '../build/linux/system.gyp:gdk', 595 '../build/linux/system.gyp:gdk',
596 '../build/linux/system.gyp:fontconfig', 596 '../build/linux/system.gyp:fontconfig',
597 '../build/linux/system.gyp:freetype2', 597 '../build/linux/system.gyp:freetype2',
598 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', 598 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz',
599 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', 599 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface',
600 ], 600 ],
601 'cflags': [ 601 'cflags': [
602 '-Wno-unused', 602 '-Wno-unused',
603 '-Wno-unused-function', 603 '-Wno-unused-function',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 ], 727 ],
728 }, 728 },
729 ], 729 ],
730 } 730 }
731 731
732 # Local Variables: 732 # Local Variables:
733 # tab-width:2 733 # tab-width:2
734 # indent-tabs-mode:nil 734 # indent-tabs-mode:nil
735 # End: 735 # End:
736 # vim: set expandtab tabstop=2 shiftwidth=2: 736 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« chrome/chrome.gyp ('K') | « sdch/sdch.gyp ('k') | testing/gtest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698