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

Side by Side Diff: skia/skia.gyp

Issue 10928093: Adds an iOS implementation of gfx::Image. (Closed) Base URL: http://git.chromium.org/chromium/src.git@skia
Patch Set: Cleanup. Created 8 years, 3 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 10 'variables': {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'ext/platform_canvas_win.cc', 176 'ext/platform_canvas_win.cc',
177 'ext/platform_device.cc', 177 'ext/platform_device.cc',
178 'ext/platform_device.h', 178 'ext/platform_device.h',
179 'ext/platform_device_linux.cc', 179 'ext/platform_device_linux.cc',
180 'ext/platform_device_mac.cc', 180 'ext/platform_device_mac.cc',
181 'ext/platform_device_win.cc', 181 'ext/platform_device_win.cc',
182 'ext/SkMemory_new_handler.cpp', 182 'ext/SkMemory_new_handler.cpp',
183 'ext/skia_sandbox_support_win.h', 183 'ext/skia_sandbox_support_win.h',
184 'ext/skia_sandbox_support_win.cc', 184 'ext/skia_sandbox_support_win.cc',
185 'ext/skia_trace_shim.h', 185 'ext/skia_trace_shim.h',
186 'ext/skia_utils_ios.mm',
187 'ext/skia_utils_ios.h',
186 'ext/skia_utils_mac.mm', 188 'ext/skia_utils_mac.mm',
187 'ext/skia_utils_mac.h', 189 'ext/skia_utils_mac.h',
188 'ext/skia_utils_win.cc', 190 'ext/skia_utils_win.cc',
189 'ext/skia_utils_win.h', 191 'ext/skia_utils_win.h',
190 'ext/vector_canvas.cc', 192 'ext/vector_canvas.cc',
191 'ext/vector_canvas.h', 193 'ext/vector_canvas.h',
192 'ext/vector_platform_device_emf_win.cc', 194 'ext/vector_platform_device_emf_win.cc',
193 'ext/vector_platform_device_emf_win.h', 195 'ext/vector_platform_device_emf_win.h',
194 'ext/vector_platform_device_skia.cc', 196 'ext/vector_platform_device_skia.cc',
195 'ext/vector_platform_device_skia.h', 197 'ext/vector_platform_device_skia.h',
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 }], 588 }],
587 ], 589 ],
588 }, 590 },
589 'target_conditions': [ 591 'target_conditions': [
590 # Pull in specific Mac files for iOS (which have been filtered out 592 # Pull in specific Mac files for iOS (which have been filtered out
591 # by file name rules). 593 # by file name rules).
592 [ 'OS == "ios"', { 594 [ 'OS == "ios"', {
593 'sources/': [ 595 'sources/': [
594 ['include', 'SkFontHost_mac\\.cpp$',], 596 ['include', 'SkFontHost_mac\\.cpp$',],
595 ['include', 'SkStream_mac\\.cpp$',], 597 ['include', 'SkStream_mac\\.cpp$',],
598 ['include', 'SkCreateCGImageRef\\.cpp$',],
596 ], 599 ],
597 }], 600 }],
598 ], 601 ],
599 }, 602 },
600 603
601 # Due to an unfortunate intersection of lameness between gcc and gyp, 604 # Due to an unfortunate intersection of lameness between gcc and gyp,
602 # we have to build the *_SSE2.cpp files in a separate target. The 605 # we have to build the *_SSE2.cpp files in a separate target. The
603 # gcc lameness is that, in order to compile SSE2 intrinsics code, it 606 # gcc lameness is that, in order to compile SSE2 intrinsics code, it
604 # must be passed the -msse2 flag. However, with this flag, it may 607 # must be passed the -msse2 flag. However, with this flag, it may
605 # emit SSE2 instructions even for scalar code, such as the CPUID 608 # emit SSE2 instructions even for scalar code, such as the CPUID
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 'sources': [ 830 'sources': [
828 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 831 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
829 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 832 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
830 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 833 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
831 ], 834 ],
832 }, 835 },
833 ], 836 ],
834 }], 837 }],
835 ], 838 ],
836 } 839 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698