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

Side by Side Diff: gyp/xml.gyp

Issue 16099011: GYP changes and scripts for compiling Skia for ChromeOS (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'xml', 4 'target_name': 'xml',
5 'product_name': 'skia_xml', 5 'product_name': 'skia_xml',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'include_dirs': [ 8 'include_dirs': [
9 '../include/config', 9 '../include/config',
10 '../include/core', 10 '../include/core',
(...skipping 14 matching lines...) Expand all
25 '../src/xml/SkJS.cpp', 25 '../src/xml/SkJS.cpp',
26 '../src/xml/SkJSDisplayable.cpp', 26 '../src/xml/SkJSDisplayable.cpp',
27 '../src/xml/SkXMLParser.cpp', 27 '../src/xml/SkXMLParser.cpp',
28 '../src/xml/SkXMLPullParser.cpp', 28 '../src/xml/SkXMLPullParser.cpp',
29 '../src/xml/SkXMLWriter.cpp', 29 '../src/xml/SkXMLWriter.cpp',
30 ], 30 ],
31 'sources!': [ 31 'sources!': [
32 '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header 32 '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 [ 'skia_os in ["win", "mac", "linux", "freebsd", "openbsd", "solaris", " android", "ios", "nacl"]', { 35 [ 'skia_os in ["win", "mac", "linux", "freebsd", "openbsd", "solaris", " android", "ios", "nacl", "chromeos"]', {
36 'sources!': [ 36 'sources!': [
37 # no jsapi.h by default on system 37 # no jsapi.h by default on system
38 '../include/xml/SkJS.h', 38 '../include/xml/SkJS.h',
39 '../src/xml/SkJS.cpp', 39 '../src/xml/SkJS.cpp',
40 '../src/xml/SkJSDisplayable.cpp', 40 '../src/xml/SkJSDisplayable.cpp',
41 ], 41 ],
42 }], 42 }],
43 ], 43 ],
44 'direct_dependent_settings': { 44 'direct_dependent_settings': {
45 'include_dirs': [ 45 'include_dirs': [
46 '../include/xml', 46 '../include/xml',
47 ], 47 ],
48 }, 48 },
49 }, 49 },
50 ], 50 ],
51 } 51 }
52 52
53 # Local Variables: 53 # Local Variables:
54 # tab-width:2 54 # tab-width:2
55 # indent-tabs-mode:nil 55 # indent-tabs-mode:nil
56 # End: 56 # End:
57 # vim: set expandtab tabstop=2 shiftwidth=2: 57 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698