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

Side by Side Diff: gyp/SimpleCocoaApp.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/SampleApp.gyp ('k') | gyp/example.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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'SimpleCocoaApp', 8 'target_name': 'SimpleCocoaApp',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle' : 1, 10 'mac_bundle' : 1,
11 'include_dirs' : [ 11 'include_dirs' : [
12 '../experimental/SimpleCocoaApp/', 12 '../experimental/SimpleCocoaApp/',
13 ], 13 ],
14 'sources': [ 14 'sources': [
15 '../src/views/mac/SkEventNotifier.h',
16 '../src/views/mac/SkEventNotifier.mm',
17 '../src/views/mac/skia_mac.mm',
18 '../src/views/mac/SkNSView.h',
19 '../src/views/mac/SkNSView.mm',
20 '../src/views/mac/SkOptionsTableView.h',
21 '../src/views/mac/SkOptionsTableView.mm',
22 '../src/views/mac/SkOSWindow_Mac.mm',
23 '../src/views/mac/SkTextFieldCell.h',
24 '../src/views/mac/SkTextFieldCell.m',
25
26 '../experimental/SimpleCocoaApp/SimpleApp-Info.plist', 15 '../experimental/SimpleCocoaApp/SimpleApp-Info.plist',
27 '../experimental/SimpleCocoaApp/SimpleApp.h', 16 '../experimental/SimpleCocoaApp/SimpleApp.h',
28 '../experimental/SimpleCocoaApp/SimpleApp.mm', 17 '../experimental/SimpleCocoaApp/SimpleApp.mm',
29 18
30 ], 19 ],
31 'dependencies': [ 20 'dependencies': [
32 'skia_lib.gyp:skia_lib', 21 'skia_lib.gyp:skia_lib',
33 'views.gyp:views', 22 'views.gyp:views',
34 'xml.gyp:xml', 23 'xml.gyp:xml',
35 ], 24 ],
(...skipping 13 matching lines...) Expand all
49 'INFOPLIST_FILE' : '../experimental/SimpleCocoaApp/SimpleApp-Info.pl ist', 38 'INFOPLIST_FILE' : '../experimental/SimpleCocoaApp/SimpleApp-Info.pl ist',
50 }, 39 },
51 'mac_bundle_resources' : [ 40 'mac_bundle_resources' : [
52 '../experimental/SimpleCocoaApp/SimpleApp.xib', 41 '../experimental/SimpleCocoaApp/SimpleApp.xib',
53 ], 42 ],
54 }], 43 }],
55 ], 44 ],
56 }, 45 },
57 ], 46 ],
58 } 47 }
OLDNEW
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/example.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698