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

Side by Side Diff: skia/skia_chrome.gypi

Issue 132113015: IPC interface for font management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Match final interface and cleanup usage. Created 6 years, 9 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This gypi file contains all the Chrome-specific enhancements to Skia. 6 # This gypi file contains all the Chrome-specific enhancements to Skia.
7 # In component mode (shared_lib) it is folded into a single shared library with 7 # In component mode (shared_lib) it is folded into a single shared library with
8 # the Skia files but in all other cases it is a separate library. 8 # the Skia files but in all other cases it is a separate library.
9 { 9 {
10 'dependencies': [ 10 'dependencies': [
(...skipping 20 matching lines...) Expand all
31 'ext/bitmap_platform_device_mac.cc', 31 'ext/bitmap_platform_device_mac.cc',
32 'ext/bitmap_platform_device_mac.h', 32 'ext/bitmap_platform_device_mac.h',
33 'ext/bitmap_platform_device_skia.cc', 33 'ext/bitmap_platform_device_skia.cc',
34 'ext/bitmap_platform_device_skia.h', 34 'ext/bitmap_platform_device_skia.h',
35 'ext/bitmap_platform_device_win.cc', 35 'ext/bitmap_platform_device_win.cc',
36 'ext/bitmap_platform_device_win.h', 36 'ext/bitmap_platform_device_win.h',
37 'ext/convolver.cc', 37 'ext/convolver.cc',
38 'ext/convolver.h', 38 'ext/convolver.h',
39 'ext/event_tracer_impl.cc', 39 'ext/event_tracer_impl.cc',
40 'ext/event_tracer_impl.h', 40 'ext/event_tracer_impl.h',
41 'ext/fontmgr_default_win.cc',
42 'ext/fontmgr_default_win.h',
41 'ext/google_logging.cc', 43 'ext/google_logging.cc',
42 'ext/image_operations.cc', 44 'ext/image_operations.cc',
43 'ext/image_operations.h', 45 'ext/image_operations.h',
44 'ext/lazy_pixel_ref.cc', 46 'ext/lazy_pixel_ref.cc',
45 'ext/lazy_pixel_ref.h', 47 'ext/lazy_pixel_ref.h',
46 'ext/opacity_draw_filter.cc', 48 'ext/opacity_draw_filter.cc',
47 'ext/opacity_draw_filter.h', 49 'ext/opacity_draw_filter.h',
48 'ext/paint_simplifier.cc', 50 'ext/paint_simplifier.cc',
49 'ext/paint_simplifier.h', 51 'ext/paint_simplifier.h',
50 'ext/pixel_ref_utils.cc', 52 'ext/pixel_ref_utils.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'target_conditions': [ 120 'target_conditions': [
119 # Pull in specific linux files for android (which have been filtered out 121 # Pull in specific linux files for android (which have been filtered out
120 # by file name rules). 122 # by file name rules).
121 [ 'OS == "android"', { 123 [ 'OS == "android"', {
122 'sources/': [ 124 'sources/': [
123 ['include', 'ext/platform_device_linux\\.cc$'], 125 ['include', 'ext/platform_device_linux\\.cc$'],
124 ], 126 ],
125 }], 127 }],
126 ], 128 ],
127 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698