OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 '../third_party/skia/include/images', | 545 '../third_party/skia/include/images', |
546 '../third_party/skia/include/utils', | 546 '../third_party/skia/include/utils', |
547 '../third_party/skia/src/core', | 547 '../third_party/skia/src/core', |
548 ], | 548 ], |
549 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 549 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
550 'mac_framework_dirs': [ | 550 'mac_framework_dirs': [ |
551 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram
eworks', | 551 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram
eworks', |
552 ], | 552 ], |
553 'defines': [ | 553 'defines': [ |
554 'SK_BUILD_NO_IMAGE_ENCODE', | 554 'SK_BUILD_NO_IMAGE_ENCODE', |
555 'SK_RESTRICT=', # Remove use of __restrict__ -- not sure it's correct. | |
556 ], | 555 ], |
557 'sources!': [ | 556 'sources!': [ |
558 '../third_party/skia/include/core/SkTypes.h', | 557 '../third_party/skia/include/core/SkTypes.h', |
559 ], | 558 ], |
560 'conditions': [ | 559 'conditions': [ |
561 [ 'OS != "mac"', { | 560 [ 'OS != "mac"', { |
562 'sources/': [ | 561 'sources/': [ |
563 ['exclude', '_mac\\.(cc|cpp|mm?)$'], | 562 ['exclude', '_mac\\.(cc|cpp|mm?)$'], |
564 ['exclude', '/mac/'] ], | 563 ['exclude', '/mac/'] ], |
565 }], | 564 }], |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 ], | 732 ], |
734 }, | 733 }, |
735 ], | 734 ], |
736 } | 735 } |
737 | 736 |
738 # Local Variables: | 737 # Local Variables: |
739 # tab-width:2 | 738 # tab-width:2 |
740 # indent-tabs-mode:nil | 739 # indent-tabs-mode:nil |
741 # End: | 740 # End: |
742 # vim: set expandtab tabstop=2 shiftwidth=2: | 741 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |