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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 ], | 680 ], |
681 }], | 681 }], |
682 [ 'OS != "win"', { | 682 [ 'OS != "win"', { |
683 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], | 683 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], |
684 'sources!': [ | 684 'sources!': [ |
685 'ext/vector_canvas.cc', | 685 'ext/vector_canvas.cc', |
686 'ext/vector_device.cc', | 686 'ext/vector_device.cc', |
687 ], | 687 ], |
688 }], | 688 }], |
689 [ 'OS == "linux"', { | 689 [ 'OS == "linux"', { |
| 690 'dependencies': [ |
| 691 '../build/linux/system.gyp:gtk', |
| 692 ], |
690 'cflags': [ | 693 'cflags': [ |
691 '-Wno-unused', | 694 '-Wno-unused', |
692 '-Wno-unused-function', | 695 '-Wno-unused-function', |
693 ], | 696 ], |
694 'sources!': [ | 697 'sources!': [ |
695 'ports/SkFontHost_none.cpp', | 698 'ports/SkFontHost_none.cpp', |
696 'sgl/SkTypeface_fake.cpp', | 699 'sgl/SkTypeface_fake.cpp', |
697 ], | 700 ], |
698 }], | 701 }], |
699 [ 'OS == "mac"', { | 702 [ 'OS == "mac"', { |
(...skipping 19 matching lines...) Expand all Loading... |
719 'direct_dependent_settings': { | 722 'direct_dependent_settings': { |
720 'include_dirs': [ | 723 'include_dirs': [ |
721 'include', | 724 'include', |
722 'include/corecg', | 725 'include/corecg', |
723 'ext', | 726 'ext', |
724 ], | 727 ], |
725 }, | 728 }, |
726 }, | 729 }, |
727 ], | 730 ], |
728 } | 731 } |
OLD | NEW |