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

Side by Side Diff: skia/skia.gyp

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months 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 | Annotate | Revision Log
« no previous file with comments | « sdch/sdch.gyp ('k') | testing/gmock.gyp » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': '<(component)', 9 'type': '<(component)',
10 'msvs_guid': 'CD9CA56E-4E94-444C-87D4-58CA1E6F300D', 10 'msvs_guid': 'CD9CA56E-4E94-444C-87D4-58CA1E6F300D',
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 # This is actually only a problem on 32-bit Linux (all Intel Macs have 872 # This is actually only a problem on 32-bit Linux (all Intel Macs have
873 # SSE2, Linux x86_64 has SSE2 by definition, and MSC will happily emit 873 # SSE2, Linux x86_64 has SSE2 by definition, and MSC will happily emit
874 # SSE2 from instrinsics, which generating plain ol' 386 for everything 874 # SSE2 from instrinsics, which generating plain ol' 386 for everything
875 # else). However, to keep the .gyp file simple and avoid platform-specific 875 # else). However, to keep the .gyp file simple and avoid platform-specific
876 # build breakage, we do this on all platforms. 876 # build breakage, we do this on all platforms.
877 877
878 # For about the same reason, we need to compile the ARM opts files 878 # For about the same reason, we need to compile the ARM opts files
879 # separately as well. 879 # separately as well.
880 { 880 {
881 'target_name': 'skia_opts', 881 'target_name': 'skia_opts',
882 'type': '<(library)', 882 'type': 'static_library',
883 'include_dirs': [ 883 'include_dirs': [
884 '..', 884 '..',
885 'config', 885 'config',
886 '../third_party/skia/include/config', 886 '../third_party/skia/include/config',
887 '../third_party/skia/include/core', 887 '../third_party/skia/include/core',
888 '../third_party/skia/include/effects', 888 '../third_party/skia/include/effects',
889 '../third_party/skia/include/images', 889 '../third_party/skia/include/images',
890 '../third_party/skia/include/utils', 890 '../third_party/skia/include/utils',
891 '../third_party/skia/src/core', 891 '../third_party/skia/src/core',
892 ], 892 ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 ], 944 ],
945 }, 945 },
946 ], 946 ],
947 } 947 }
948 948
949 # Local Variables: 949 # Local Variables:
950 # tab-width:2 950 # tab-width:2
951 # indent-tabs-mode:nil 951 # indent-tabs-mode:nil
952 # End: 952 # End:
953 # vim: set expandtab tabstop=2 shiftwidth=2: 953 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « sdch/sdch.gyp ('k') | testing/gmock.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698