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

Side by Side Diff: gyp/core.gyp

Issue 423943005: Revert of Remove relative path to GrColor.h in SkShader.h (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | include/core/SkShader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Core Skia library code. 1 # Core Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'core', 5 'target_name': 'core',
6 'product_name': 'skia_core', 6 'product_name': 'skia_core',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76',
10 10
11 'includes': [ 11 'includes': [
12 'core.gypi', 12 'core.gypi',
13 ], 13 ],
14 14
15 'include_dirs': [ 15 'include_dirs': [
16 '../include/config', 16 '../include/config',
17 '../include/core', 17 '../include/core',
18 '../include/gpu',
19 '../include/pathops', 18 '../include/pathops',
20 '../include/pipe', 19 '../include/pipe',
21 '../include/ports', 20 '../include/ports',
22 '../include/utils', 21 '../include/utils',
23 '../include/xml', 22 '../include/xml',
24 '../src/core', 23 '../src/core',
25 '../src/sfnt', 24 '../src/sfnt',
26 '../src/image', 25 '../src/image',
27 '../src/opts', 26 '../src/opts',
28 '../src/utils', 27 '../src/utils',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 }], 84 }],
86 [ 'skia_arch_type == "arm"', { 85 [ 'skia_arch_type == "arm"', {
87 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android. 86 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android.
88 'sources': [ 87 'sources': [
89 '../src/core/SkUtilsArm.cpp', 88 '../src/core/SkUtilsArm.cpp',
90 '../src/core/SkUtilsArm.h', 89 '../src/core/SkUtilsArm.h',
91 ], 90 ],
92 }], 91 }],
93 ['skia_gpu == 1', { 92 ['skia_gpu == 1', {
94 'include_dirs': [ 93 'include_dirs': [
95 '../src/gpu', 94 '../include/gpu',
95 '../src/gpu',
96 ], 96 ],
97 }], 97 }],
98 ], 98 ],
99 'direct_dependent_settings': { 99 'direct_dependent_settings': {
100 'include_dirs': [ 100 'include_dirs': [
101 '../include/config', 101 '../include/config',
102 '../include/core', 102 '../include/core',
103 '../include/gpu',
104 '../include/pathops', 103 '../include/pathops',
105 '../include/pipe', 104 '../include/pipe',
106 ], 105 ],
107 'conditions': [ 106 'conditions': [
108 [ 'skia_os == "mac"', { 107 [ 'skia_os == "mac"', {
109 'include_dirs': [ 108 'include_dirs': [
110 '../include/utils/mac', 109 '../include/utils/mac',
111 ], 110 ],
112 }], 111 }],
113 [ 'skia_os == "ios"', { 112 [ 'skia_os == "ios"', {
114 'include_dirs': [ 113 'include_dirs': [
115 '../include/utils/ios', 114 '../include/utils/ios',
116 ], 115 ],
117 }], 116 }],
118 [ 'skia_os == "win"', { 117 [ 'skia_os == "win"', {
119 'include_dirs': [ 118 'include_dirs': [
120 'config/win', 119 'config/win',
121 ], 120 ],
122 }], 121 }],
123 ], 122 ],
124 }, 123 },
125 }, 124 },
126 ], 125 ],
127 } 126 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698