Migrate away from the PrefMetricsService-based device ID in PrefHashCalculator.
[chromium-blink-merge.git] / skia / skia_chrome.gypi
blob99c7134b233068179c8874d65bd59ff13d5a969a
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
3 # found in the LICENSE file.
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
8 # the Skia files but in all other cases it is a separate library.
10   'dependencies': [
11     'skia_library',
12     'skia_chrome_opts',
13     '../base/base.gyp:base',
14     '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
15   ],
17   'direct_dependent_settings': {
18     'include_dirs': [
19       'ext',
20     ],
21   },
23   'sources': [
24     # Note: file list duplicated in GN build.
25     'ext/analysis_canvas.cc',
26     'ext/analysis_canvas.h',
27     'ext/benchmarking_canvas.cc',
28     'ext/benchmarking_canvas.h',
29     'ext/bitmap_platform_device.h',
30     'ext/bitmap_platform_device_cairo.cc',
31     'ext/bitmap_platform_device_cairo.h',
32     'ext/bitmap_platform_device_mac.cc',
33     'ext/bitmap_platform_device_mac.h',
34     'ext/bitmap_platform_device_skia.cc',
35     'ext/bitmap_platform_device_skia.h',
36     'ext/bitmap_platform_device_win.cc',
37     'ext/bitmap_platform_device_win.h',
38     'ext/convolver.cc',
39     'ext/convolver.h',
40     'ext/event_tracer_impl.cc',
41     'ext/event_tracer_impl.h',
42     'ext/fontmgr_default_win.cc',
43     'ext/fontmgr_default_win.h',
44     'ext/google_logging.cc',
45     'ext/image_operations.cc',
46     'ext/image_operations.h',
47     'ext/lazy_pixel_ref.cc',
48     'ext/lazy_pixel_ref.h',
49     'ext/opacity_draw_filter.cc',
50     'ext/opacity_draw_filter.h',
51     'ext/paint_simplifier.cc',
52     'ext/paint_simplifier.h',
53     'ext/pixel_ref_utils.cc',
54     'ext/pixel_ref_utils.h',
55     'ext/platform_canvas.cc',
56     'ext/platform_canvas.h',
57     'ext/platform_device.cc',
58     'ext/platform_device.h',
59     'ext/platform_device_linux.cc',
60     'ext/platform_device_mac.cc',
61     'ext/platform_device_win.cc',
62     'ext/recursive_gaussian_convolution.cc',
63     'ext/recursive_gaussian_convolution.h',
64     'ext/refptr.h',
65     'ext/SkDiscardableMemory_chrome.h',
66     'ext/SkDiscardableMemory_chrome.cc',
67     'ext/SkMemory_new_handler.cpp',
68     'ext/skia_trace_shim.h',
69     'ext/skia_utils_base.cc',
70     'ext/skia_utils_base.h',
71     'ext/skia_utils_ios.mm',
72     'ext/skia_utils_ios.h',
73     'ext/skia_utils_mac.mm',
74     'ext/skia_utils_mac.h',
75     'ext/skia_utils_win.cc',
76     'ext/skia_utils_win.h',
77     'ext/vector_canvas.h',
78     'ext/vector_platform_device_emf_win.cc',
79     'ext/vector_platform_device_emf_win.h',
80     'ext/vector_platform_device_skia.cc',
81     'ext/vector_platform_device_skia.h',
82   ],
83   'conditions': [
84     [ 'OS == "android" and enable_printing == 0', {
85       'sources!': [
86         'ext/skia_utils_base.cc',
87       ],
88     }],
89     [ 'enable_printing == 0', {
90       'sources!': [
91         'ext/vector_platform_device_skia.cc',
92       ],
93     }],
94     ['OS == "ios"', {
95       'sources/': [
96         ['exclude', '^ext/vector_platform_device_skia\\.'],
97       ],
98       'dependencies!': [
99         'skia_chrome_opts',
100       ],
101     }],
102     # TODO(scottmg): http://crbug.com/177306
103     ['clang==1', {
104       'xcode_settings': {
105         'WARNING_CFLAGS!': [
106           # Don't warn about string->bool used in asserts.
107           '-Wstring-conversion',
108         ],
109       },
110       'cflags!': [
111         '-Wstring-conversion',
112       ],
113     }],
114     [ 'OS != "android" and (OS != "linux" or use_cairo==1)', {
115       'sources!': [
116         'ext/bitmap_platform_device_skia.cc',
117       ],
118     }],
119   ],
121   'target_conditions': [
122     # Pull in specific linux files for android (which have been filtered out
123     # by file name rules).
124     [ 'OS == "android"', {
125       'sources/': [
126         ['include', 'ext/platform_device_linux\\.cc$'],
127       ],
128     }],
129   ],