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

Side by Side Diff: gyp/core.gyp

Issue 1421493003: tunnel down texture-size-constraint to imagefilters (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: great jit optimization -- removed unneed params from blurmask utils" Created 5 years, 1 month 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 | « no previous file | include/core/SkImageFilter.h » ('j') | src/core/SkImageFilter.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Core Skia library code. 5 # Core Skia library code.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'core', 9 'target_name': 'core',
10 'product_name': 'skia_core', 10 'product_name': 'skia_core',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 '../include/gpu', 100 '../include/gpu',
101 '../src/gpu', 101 '../src/gpu',
102 ], 102 ],
103 }], 103 }],
104 ], 104 ],
105 'direct_dependent_settings': { 105 'direct_dependent_settings': {
106 'include_dirs': [ 106 'include_dirs': [
107 '../include/c', 107 '../include/c',
108 '../include/config', 108 '../include/config',
109 '../include/core', 109 '../include/core',
110 '../include/gpu',
Stephen White 2015/10/22 18:44:16 Is this still necessary, now that it's GrTexture.h
reed1 2015/10/22 19:36:32 Done.
110 '../include/pathops', 111 '../include/pathops',
111 '../include/pipe', 112 '../include/pipe',
112 ], 113 ],
113 'conditions': [ 114 'conditions': [
114 [ 'skia_os == "mac"', { 115 [ 'skia_os == "mac"', {
115 'include_dirs': [ 116 'include_dirs': [
116 '../include/utils/mac', 117 '../include/utils/mac',
117 ], 118 ],
118 }], 119 }],
119 [ 'skia_os == "ios"', { 120 [ 'skia_os == "ios"', {
120 'include_dirs': [ 121 'include_dirs': [
121 '../include/utils/ios', 122 '../include/utils/ios',
122 ], 123 ],
123 }], 124 }],
124 [ 'skia_os == "win"', { 125 [ 'skia_os == "win"', {
125 'include_dirs': [ 126 'include_dirs': [
126 'config/win', 127 'config/win',
127 ], 128 ],
128 }], 129 }],
129 ], 130 ],
130 }, 131 },
131 }, 132 },
132 ], 133 ],
133 } 134 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkImageFilter.h » ('j') | src/core/SkImageFilter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698