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

Side by Side Diff: gyp/most.gyp

Issue 856103002: Revert "Revert "delete old things!"" (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 | « gyp/gm.gyp ('k') | gyp/tools.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 ALMOST everything provided by Skia; this should be the default target. 1 # Build ALMOST everything provided by Skia; this should be the default target.
2 # 2 #
3 # This omits the following targets that many developers won't want to build: 3 # This omits the following targets that many developers won't want to build:
4 # - debugger: this requires QT to build 4 # - debugger: this requires QT to build
5 # 5 #
6 { 6 {
7 'variables': { 7 'variables': {
8 'skia_skip_gui%': 0, 8 'skia_skip_gui%': 0,
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'most', 12 'target_name': 'most',
13 'type': 'none', 13 'type': 'none',
14 'dependencies': [ 14 'dependencies': [
15 # The minimal set of static libraries for basic Skia functionality. 15 # The minimal set of static libraries for basic Skia functionality.
16 'skia_lib.gyp:skia_lib', 16 'skia_lib.gyp:skia_lib',
17 17
18 'bench.gyp:*', 18 'bench.gyp:*',
19 'gm.gyp:gm',
20 'SampleApp.gyp:SampleApp', 19 'SampleApp.gyp:SampleApp',
21 'tools.gyp:tools', 20 'tools.gyp:tools',
22 'pathops_unittest.gyp:*', 21 'pathops_unittest.gyp:*',
23 'pathops_skpclip.gyp:*', 22 'pathops_skpclip.gyp:*',
24 # 'pdfviewer.gyp:pdfviewer', 23 # 'pdfviewer.gyp:pdfviewer',
25 'dm.gyp:dm', 24 'dm.gyp:dm',
26 ], 25 ],
27 'conditions': [ 26 'conditions': [
28 ['skia_os == "android"', { 27 ['skia_os == "android"', {
29 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], 28 'dependencies': [ 'android_system.gyp:SampleApp_APK' ],
30 }], 29 }],
31 ['skia_os == "ios"', { 30 ['skia_os == "ios"', {
32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], 31 'dependencies!': [ 'SampleApp.gyp:SampleApp' ],
33 'dependencies': ['iOSShell.gyp:iOSShell' ], 32 'dependencies': ['iOSShell.gyp:iOSShell' ],
34 }], 33 }],
35 ['skia_os == "mac" or skia_os == "linux"', { 34 ['skia_os == "mac" or skia_os == "linux"', {
36 'dependencies': [ 'nanomsg.gyp:*' ], 35 'dependencies': [ 'nanomsg.gyp:*' ],
37 }], 36 }],
38 [ 'skia_skip_gui', 37 [ 'skia_skip_gui',
39 { 38 {
40 'dependencies!': [ 39 'dependencies!': [
41 'SampleApp.gyp:SampleApp', 40 'SampleApp.gyp:SampleApp',
42 ] 41 ]
43 } 42 }
44 ] 43 ]
45 ], 44 ],
46 }, 45 },
47 ], 46 ],
48 } 47 }
OLDNEW
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698