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

Side by Side Diff: gyp/most.gyp

Issue 294873004: Add nanomsg to third_party, with some demos. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 6 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 | « experimental/nanomsg/picture_demo.cpp ('k') | gyp/nanomsg.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': [
(...skipping 13 matching lines...) Expand all
24 # 'pdfviewer.gyp:pdfviewer', 24 # 'pdfviewer.gyp:pdfviewer',
25 'dm.gyp:dm', 25 'dm.gyp:dm',
26 ], 26 ],
27 'conditions': [ 27 'conditions': [
28 ['skia_os == "android"', { 28 ['skia_os == "android"', {
29 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], 29 'dependencies': [ 'android_system.gyp:SampleApp_APK' ],
30 }], 30 }],
31 ['skia_os == "ios"', { 31 ['skia_os == "ios"', {
32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], 32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ],
33 }], 33 }],
34 ['skia_os == "mac" or skia_os == "linux"', {
35 'dependencies': [ 'nanomsg.gyp:*' ],
36 }],
34 [ 'skia_skip_gui', 37 [ 'skia_skip_gui',
35 { 38 {
36 'dependencies!': [ 39 'dependencies!': [
37 'SampleApp.gyp:SampleApp', 40 'SampleApp.gyp:SampleApp',
38 ] 41 ]
39 } 42 }
40 ] 43 ]
41 ], 44 ],
42 }, 45 },
43 ], 46 ],
44 } 47 }
OLDNEW
« no previous file with comments | « experimental/nanomsg/picture_demo.cpp ('k') | gyp/nanomsg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698