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

Side by Side Diff: gyp/core.gyp

Issue 145203003: Remove extraneous folders from includes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 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 | no next file » | 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
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 }], 90 }],
91 ['skia_gpu == 1', { 91 ['skia_gpu == 1', {
92 'include_dirs': [ 92 'include_dirs': [
93 '../include/gpu', 93 '../include/gpu',
94 '../src/gpu', 94 '../src/gpu',
95 ], 95 ],
96 }], 96 }],
97 ], 97 ],
98 'direct_dependent_settings': { 98 'direct_dependent_settings': {
99 'include_dirs': [ 99 'include_dirs': [
100 'config',
101 '../include/config', 100 '../include/config',
102 '../include/core', 101 '../include/core',
103 '../include/lazy', 102 '../include/lazy',
mtklein 2014/01/23 00:05:45 include/lazy also doesn't exist. :)
scroggo 2014/01/23 14:09:19 Yay cleanups! Removed.
104 '../include/pathops', 103 '../include/pathops',
105 '../include/pipe', 104 '../include/pipe',
106 'ext',
107 ], 105 ],
108 'conditions': [ 106 'conditions': [
109 [ 'skia_os == "mac"', { 107 [ 'skia_os == "mac"', {
110 'include_dirs': [ 108 'include_dirs': [
111 '../include/utils/mac', 109 '../include/utils/mac',
112 ], 110 ],
113 }], 111 }],
114 [ 'skia_os == "ios"', { 112 [ 'skia_os == "ios"', {
115 'include_dirs': [ 113 'include_dirs': [
116 '../include/utils/ios', 114 '../include/utils/ios',
117 ], 115 ],
118 }], 116 }],
119 [ 'skia_os == "win"', { 117 [ 'skia_os == "win"', {
120 'include_dirs': [ 118 'include_dirs': [
121 'config/win', 119 'config/win',
122 ], 120 ],
123 }], 121 }],
124 ], 122 ],
125 }, 123 },
126 }, 124 },
127 ], 125 ],
128 } 126 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698