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

Side by Side Diff: gyp/everything.gyp

Issue 726833004: Cleanup: Delete webtry.gyp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 | « .gitignore ('k') | gyp/webtry.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Build EVERYTHING provided by Skia. 1 # Build EVERYTHING provided by Skia.
2 # (Start with the "most" target, and then add targets that we intentionally 2 # (Start with the "most" target, and then add targets that we intentionally
3 # left out of "most". See most.gyp for an explanation of which targets are 3 # left out of "most". See most.gyp for an explanation of which targets are
4 # left out of "most".) 4 # left out of "most".)
5 # 5 #
6 # We used to call this the 'all' target, but in SOME cases that 6 # We used to call this the 'all' target, but in SOME cases that
7 # conflicted with an automatically-generated 'all' target. 7 # conflicted with an automatically-generated 'all' target.
8 # See https://code.google.com/p/skia/issues/detail?id=932 8 # See https://code.google.com/p/skia/issues/detail?id=932
9 # 9 #
10 { 10 {
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'everything', 13 'target_name': 'everything',
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'most.gyp:most', 16 'most.gyp:most',
17 ], 17 ],
18 'conditions': [ 18 'conditions': [
19 ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and ski a_arch_width == 32)', { 19 ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and ski a_arch_width == 32)', {
20 # debugger is not supported on this platform 20 # debugger is not supported on this platform
21 }, { 21 }, {
22 'dependencies': [ 22 'dependencies': [
23 'debugger.gyp:debugger', 23 'debugger.gyp:debugger',
24 'pdfviewer.gyp:pdfviewer', 24 'pdfviewer.gyp:pdfviewer',
25 #'v8.gyp:SkV8Example', 25 #'v8.gyp:SkV8Example',
26 #'webtry.gyp:webtry',
27 ], 26 ],
28 }], 27 }],
29 ], 28 ],
30 }, 29 },
31 ], 30 ],
32 } 31 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | gyp/webtry.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698