Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: skia/skia.gyp

Issue 463027: arm: Add thumb target and associated fixes (Closed)
Patch Set: fix comment Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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', { 579 [ 'armv7 == 1', {
580 'defines': [ 580 'defines': [
581 '__ARM_HAVE_NEON', 581 '__ARM_HAVE_NEON',
582 '__ARM_ARCH__=7', 582 '__ARM_ARCH__=7',
583 ], 583 ],
584 'cflags!': [ 584 }],
585 # These files contain ARM assembly, and building with thumb breaks 585 [ 'target_arch == "arm"', {
586 # the assembler.
587 '-mthumb',
588 ],
589 'sources!': [ 586 'sources!': [
590 '../third_party/skia/src/opts/opts_check_SSE2.cpp' 587 '../third_party/skia/src/opts/opts_check_SSE2.cpp'
591 ], 588 ],
592 'sources': [ 589 'sources': [
593 '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp', 590 '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
594 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp', 591 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
595 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 592 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
596 ], 593 ],
597 }], 594 }],
598 [ 'OS == "linux" or OS == "freebsd"', { 595 [ 'OS == "linux" or OS == "freebsd"', {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 ], 705 ],
709 }, 706 },
710 ], 707 ],
711 } 708 }
712 709
713 # Local Variables: 710 # Local Variables:
714 # tab-width:2 711 # tab-width:2
715 # indent-tabs-mode:nil 712 # indent-tabs-mode:nil
716 # End: 713 # End:
717 # vim: set expandtab tabstop=2 shiftwidth=2: 714 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698