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

Side by Side Diff: gyp/views.gyp

Issue 1184143011: nibless mac, visual bench working on mac (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix HelloWorld compile on windows Created 5 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 | « gyp/v8.gyp ('k') | gyp/visualbench.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 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Views is the Skia windowing toolkit. 5 # Views is the Skia windowing toolkit.
6 # It provides: 6 # It provides:
7 # * A portable means of creating native windows. 7 # * A portable means of creating native windows.
8 # * Events. 8 # * Events.
9 # * Basic widgets and controls. 9 # * Basic widgets and controls.
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 '../src/views/SkTagList.h', 54 '../src/views/SkTagList.h',
55 '../src/views/SkTouchGesture.cpp', 55 '../src/views/SkTouchGesture.cpp',
56 '../src/views/SkView.cpp', 56 '../src/views/SkView.cpp',
57 '../src/views/SkViewInflate.cpp', 57 '../src/views/SkViewInflate.cpp',
58 '../src/views/SkViewPriv.cpp', 58 '../src/views/SkViewPriv.cpp',
59 '../src/views/SkViewPriv.h', 59 '../src/views/SkViewPriv.h',
60 '../src/views/SkWidgets.cpp', 60 '../src/views/SkWidgets.cpp',
61 '../src/views/SkWindow.cpp', 61 '../src/views/SkWindow.cpp',
62 62
63 # Mac 63 # Mac
64 '../src/views/mac/SkEventNotifier.h',
65 '../src/views/mac/SkEventNotifier.mm',
66 '../src/views/mac/SkTextFieldCell.h',
67 '../src/views/mac/SkTextFieldCell.m',
68 '../src/views/mac/SkNSView.h',
69 '../src/views/mac/SkNSView.mm',
64 '../src/views/mac/SkOSWindow_Mac.mm', 70 '../src/views/mac/SkOSWindow_Mac.mm',
65 '../src/views/mac/skia_mac.mm', 71 '../src/views/mac/skia_mac.mm',
66 72
67 # SDL 73 # SDL
68 '../src/views/sdl/SkOSWindow_SDL.cpp', 74 '../src/views/sdl/SkOSWindow_SDL.cpp',
69 75
70 # *nix 76 # *nix
71 '../src/views/unix/SkOSWindow_Unix.cpp', 77 '../src/views/unix/SkOSWindow_Unix.cpp',
72 '../src/views/unix/keysym2ucs.c', 78 '../src/views/unix/keysym2ucs.c',
73 '../src/views/unix/skia_unix.cpp', 79 '../src/views/unix/skia_unix.cpp',
74 80
75 # Windows 81 # Windows
76 '../src/views/win/SkOSWindow_win.cpp', 82 '../src/views/win/SkOSWindow_win.cpp',
77 '../src/views/win/skia_win.cpp', 83 '../src/views/win/skia_win.cpp',
78 84
79 ], 85 ],
80 'sources!' : [ 86 'sources!' : [
81 '../src/views/sdl/SkOSWindow_SDL.cpp', 87 '../src/views/sdl/SkOSWindow_SDL.cpp',
82 ], 88 ],
83 'conditions': [ 89 'conditions': [
84 [ 'skia_gpu == 1', { 90 [ 'skia_gpu == 1', {
85 'include_dirs' : [ 91 'include_dirs' : [
86 '../src/gpu', 92 '../src/gpu',
87 ], 93 ],
88 }], 94 }],
89 [ 'skia_os == "mac"', { 95 [ 'skia_os == "mac"', {
90 'link_settings': { 96 'link_settings': {
91 'libraries': [ 97 'libraries': [
98 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
99 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
92 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 100 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
93 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 101 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
94 ], 102 ],
95 }, 103 },
96 },{ 104 },{
97 'sources!': [ 105 'sources!': [
98 '../src/views/mac/SkOSWindow_Mac.mm', 106 '../src/views/mac/SkEventNotifier.h',
99 '../src/views/mac/skia_mac.mm', 107 '../src/views/mac/SkEventNotifier.mm',
108 '../src/views/mac/SkTextFieldCell.h',
109 '../src/views/mac/SkTextFieldCell.m',
110 '../src/views/mac/SkNSView.h',
111 '../src/views/mac/SkNSView.mm',
112 '../src/views/mac/SkOSWindow_Mac.mm',
113 '../src/views/mac/skia_mac.mm',
100 ], 114 ],
101 }], 115 }],
102 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 116 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
103 'link_settings': { 117 'link_settings': {
104 'libraries': [ 118 'libraries': [
105 '-lGL', 119 '-lGL',
106 '-lGLU', 120 '-lGLU',
107 '-lX11', 121 '-lX11',
108 ], 122 ],
109 }, 123 },
(...skipping 21 matching lines...) Expand all
131 'include_dirs': [ 145 'include_dirs': [
132 '../include/views', 146 '../include/views',
133 ], 147 ],
134 }, 148 },
135 'export_dependent_settings': [ 149 'export_dependent_settings': [
136 'xml.gyp:xml', 150 'xml.gyp:xml',
137 ], 151 ],
138 }, 152 },
139 ], 153 ],
140 } 154 }
OLDNEW
« no previous file with comments | « gyp/v8.gyp ('k') | gyp/visualbench.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698