OLD | NEW |
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 'includes': [ | 6 'includes': [ |
7 '../build/common.gypi', | 7 '../build/common.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 'ext/platform_device_linux.cc', | 518 'ext/platform_device_linux.cc', |
519 'ext/platform_device_linux.h', | 519 'ext/platform_device_linux.h', |
520 'ext/platform_device_mac.cc', | 520 'ext/platform_device_mac.cc', |
521 'ext/platform_device_mac.h', | 521 'ext/platform_device_mac.h', |
522 'ext/platform_device_win.cc', | 522 'ext/platform_device_win.cc', |
523 'ext/platform_device_win.h', | 523 'ext/platform_device_win.h', |
524 'ext/SkMemory_new_handler.cpp', | 524 'ext/SkMemory_new_handler.cpp', |
525 'ext/SkTypeface_fake.cpp', | 525 'ext/SkTypeface_fake.cpp', |
526 'ext/skia_utils.cc', | 526 'ext/skia_utils.cc', |
527 'ext/skia_utils.h', | 527 'ext/skia_utils.h', |
528 'ext/skia_utils_mac.cc', | 528 'ext/skia_utils_mac.mm', |
529 'ext/skia_utils_mac.h', | 529 'ext/skia_utils_mac.h', |
530 'ext/skia_utils_win.cc', | 530 'ext/skia_utils_win.cc', |
531 'ext/skia_utils_win.h', | 531 'ext/skia_utils_win.h', |
532 'ext/vector_canvas.cc', | 532 'ext/vector_canvas.cc', |
533 'ext/vector_canvas.h', | 533 'ext/vector_canvas.h', |
534 'ext/vector_platform_device_win.cc', | 534 'ext/vector_platform_device_win.cc', |
535 'ext/vector_platform_device_win.h', | 535 'ext/vector_platform_device_win.h', |
536 ], | 536 ], |
537 'include_dirs': [ | 537 'include_dirs': [ |
538 '..', | 538 '..', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 ], | 601 ], |
602 'export_dependent_settings': [ | 602 'export_dependent_settings': [ |
603 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', | 603 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', |
604 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', | 604 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', |
605 ], | 605 ], |
606 }], | 606 }], |
607 [ 'OS == "mac"', { | 607 [ 'OS == "mac"', { |
608 'defines': [ | 608 'defines': [ |
609 'SK_BUILD_FOR_MAC', | 609 'SK_BUILD_FOR_MAC', |
610 ], | 610 ], |
611 » 'include_dirs': [ | 611 'include_dirs': [ |
612 » '../third_party/skia/include/utils/mac', | 612 '../third_party/skia/include/utils/mac', |
613 » ], | 613 ], |
| 614 'link_settings': { |
| 615 'libraries': [ |
| 616 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 617 ], |
| 618 }, |
614 }], | 619 }], |
615 [ 'OS == "win"', { | 620 [ 'OS == "win"', { |
616 'sources!': [ | 621 'sources!': [ |
617 '../third_party/skia/src/core/SkMMapStream.cpp', | 622 '../third_party/skia/src/core/SkMMapStream.cpp', |
618 '../third_party/skia/src/ports/SkThread_pthread.cpp', | 623 '../third_party/skia/src/ports/SkThread_pthread.cpp', |
619 '../third_party/skia/src/ports/SkTime_Unix.cc', | 624 '../third_party/skia/src/ports/SkTime_Unix.cc', |
620 ], | 625 ], |
621 'configurations': { | 626 'configurations': { |
622 'Debug': { | 627 'Debug': { |
623 'msvs_precompiled_header': 'include/core/SkTypes.h', | 628 'msvs_precompiled_header': 'include/core/SkTypes.h', |
624 'msvs_precompiled_source': 'precompiled.cc', | 629 'msvs_precompiled_source': 'precompiled.cc', |
625 }, | 630 }, |
626 }, | 631 }, |
627 'include_dirs': [ | 632 'include_dirs': [ |
628 'config/win', | 633 'config/win', |
629 ], | 634 ], |
630 },], | 635 },], |
631 ], | 636 ], |
632 'direct_dependent_settings': { | 637 'direct_dependent_settings': { |
633 'include_dirs': [ | 638 'include_dirs': [ |
634 'config', | 639 'config', |
635 '../third_party/skia/include/core', | 640 '../third_party/skia/include/core', |
636 '../third_party/skia/include/effects', | 641 '../third_party/skia/include/effects', |
637 'ext', | 642 'ext', |
638 ], | 643 ], |
639 }, | 644 }, |
640 }, | 645 }, |
641 ], | 646 ], |
642 } | 647 } |
OLD | NEW |