| 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 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 'sgl/SkTypeface.cpp', | 681 'sgl/SkTypeface.cpp', |
| 682 ], | 682 ], |
| 683 }], | 683 }], |
| 684 [ 'OS != "win"', { | 684 [ 'OS != "win"', { |
| 685 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], | 685 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], |
| 686 'sources!': [ | 686 'sources!': [ |
| 687 'ext/vector_canvas.cc', | 687 'ext/vector_canvas.cc', |
| 688 'ext/vector_device.cc', | 688 'ext/vector_device.cc', |
| 689 ], | 689 ], |
| 690 }], | 690 }], |
| 691 [ 'OS == "linux"', { |
| 692 'cflags': [ |
| 693 '-Wno-unused', |
| 694 '-Wno-unused-function', |
| 695 ], |
| 696 }], |
| 691 [ 'OS == "mac"', { | 697 [ 'OS == "mac"', { |
| 692 'defines': [ | 698 'defines': [ |
| 693 'SK_BUILD_FOR_MAC', | 699 'SK_BUILD_FOR_MAC', |
| 694 ], | 700 ], |
| 695 }], | 701 }], |
| 696 [ 'OS == "win"', { | 702 [ 'OS == "win"', { |
| 697 'sources!': [ | 703 'sources!': [ |
| 698 'images/SkMMapStream.cpp', | 704 'images/SkMMapStream.cpp', |
| 699 'ports/SkFontHost_TrueType_Tables.cpp', | 705 'ports/SkFontHost_TrueType_Tables.cpp', |
| 700 'ports/SkThread_pthread.cpp', | 706 'ports/SkThread_pthread.cpp', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 711 'direct_dependent_settings': { | 717 'direct_dependent_settings': { |
| 712 'include_dirs': [ | 718 'include_dirs': [ |
| 713 'include', | 719 'include', |
| 714 'include/corecg', | 720 'include/corecg', |
| 715 'ext', | 721 'ext', |
| 716 ], | 722 ], |
| 717 }, | 723 }, |
| 718 }, | 724 }, |
| 719 ], | 725 ], |
| 720 } | 726 } |
| OLD | NEW |