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

Side by Side Diff: gyp/example.gyp

Issue 886413004: move HelloWorld to be a peer of SampleApp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: exclude android as well Created 5 years, 10 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 | « example/mac/HelloWorldNSView.mm ('k') | gyp/most.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # GYP file to build hello world example.
2 {
3 'targets': [
4 {
5 'target_name': 'HelloWorld',
6 'type': 'executable',
7 'mac_bundle' : 1,
8 'include_dirs' : [
9 '../include/gpu',
10 ],
11 'sources': [
12 '../example/HelloWorld.h',
13 '../example/HelloWorld.cpp',
14 ],
15 'dependencies': [
16 'skia_lib.gyp:skia_lib',
17 'views.gyp:views',
18 ],
19 'conditions' : [
20 [ 'skia_os == "win"', {
21 'sources' : [
22 '../src/views/win/SkOSWindow_Win.cpp',
23 '../src/views/win/skia_win.cpp',
24 ],
25 }],
26 [ 'skia_os == "mac"', {
27 'sources': [
28 '../example/mac/HelloWorldNSView.mm',
29 '../example/mac/HelloWorldDelegate.mm',
30
31 '../src/views/mac/SkEventNotifier.mm',
32 '../src/views/mac/skia_mac.mm',
33 '../src/views/mac/SkNSView.mm',
34 '../src/views/mac/SkOptionsTableView.mm',
35 '../src/views/mac/SkOSWindow_Mac.mm',
36 '../src/views/mac/SkTextFieldCell.m',
37 ],
38 'include_dirs' : [
39 '../src/views/mac/'
40 ],
41 'xcode_settings' : {
42 'INFOPLIST_FILE' : '../example/mac/HelloWorld-Info.plist',
43 },
44 'mac_bundle_resources' : [
45 '../example/mac/HelloWorld.xib'
46 ],
47 }],
48 ],
49 },
50 ],
51 }
OLDNEW
« no previous file with comments | « example/mac/HelloWorldNSView.mm ('k') | gyp/most.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698