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 '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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', | 569 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', |
570 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp', | 570 '../third_party/skia/src/ports/SkFontHost_TryeType_Tables.cpp', |
571 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', | 571 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', |
572 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', | 572 '../third_party/skia/src/ports/SkFontHost_gamma_none.cpp', |
573 '../third_party/skia/src/ports/SkFontHost_tables.cpp', | 573 '../third_party/skia/src/ports/SkFontHost_tables.cpp', |
574 ], | 574 ], |
575 }], | 575 }], |
576 [ 'OS != "win"', { | 576 [ 'OS != "win"', { |
577 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], | 577 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], |
578 }], | 578 }], |
| 579 [ 'target_arch == "arm" and armv7 == 1', { |
| 580 'defines': [ |
| 581 '__ARM_HAVE_NEON', |
| 582 ], |
| 583 }], |
579 [ 'OS == "linux" or OS == "freebsd"', { | 584 [ 'OS == "linux" or OS == "freebsd"', { |
580 'dependencies': [ | 585 'dependencies': [ |
581 '../build/linux/system.gyp:gdk', | 586 '../build/linux/system.gyp:gdk', |
582 '../build/linux/system.gyp:fontconfig', | 587 '../build/linux/system.gyp:fontconfig', |
583 '../build/linux/system.gyp:freetype2', | 588 '../build/linux/system.gyp:freetype2', |
584 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', | 589 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz', |
585 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', | 590 '../third_party/harfbuzz/harfbuzz.gyp:harfbuzz_interface', |
586 ], | 591 ], |
587 'cflags': [ | 592 'cflags': [ |
588 '-Wno-unused', | 593 '-Wno-unused', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 }, | 647 }, |
643 }, | 648 }, |
644 ], | 649 ], |
645 } | 650 } |
646 | 651 |
647 # Local Variables: | 652 # Local Variables: |
648 # tab-width:2 | 653 # tab-width:2 |
649 # indent-tabs-mode:nil | 654 # indent-tabs-mode:nil |
650 # End: | 655 # End: |
651 # vim: set expandtab tabstop=2 shiftwidth=2: | 656 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |